More warnings

This commit is contained in:
Daniel James
2017-09-02 21:09:45 +01:00
parent 570f64f5b2
commit 62f4b4fcf3
16 changed files with 129 additions and 125 deletions

View File

@@ -18,14 +18,14 @@
namespace quickbook
{
template_symbol::template_symbol(
std::string const& identifier,
std::vector<std::string> const& params,
value const& content,
template_scope const* lexical_parent)
: identifier(identifier)
, params(params)
, content(content)
, lexical_parent(lexical_parent)
std::string const& identifier_,
std::vector<std::string> const& params_,
value const& content_,
template_scope const* lexical_parent_)
: identifier(identifier_)
, params(params_)
, content(content_)
, lexical_parent(lexical_parent_)
{
assert(content.get_tag() == template_tags::block ||
content.get_tag() == template_tags::phrase ||