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-07 16:28:02 -03:00
parent d17882f6d0
commit db95b94c8c

View File

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