Fixed compilation on IBM XLC due to incorrect function call

Templated functions dependent of a templated class must be prefixed with
the "template" keyword.
This commit is contained in:
Mathäus Mendel
2016-03-11 10:17:33 -03:00
parent b245307780
commit b3423e6601

View File

@@ -98,7 +98,7 @@ public:
std::string toString() std::string toString()
{ {
std::string str; std::string str;
Var(*this).convert<std::string>(str); Var(*this).template convert<std::string>(str);
return str; return str;
} }