Skip to content

Commit

Permalink
Fixed compilation on IBM XLC due to incorrect function call
Browse files Browse the repository at this point in the history
Templated functions dependent of a templated class must be prefixed with
the "template" keyword.
  • Loading branch information
mathausmendel committed Mar 7, 2016
1 parent d17882f commit db95b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Foundation/include/Poco/Dynamic/Struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Struct
std::string toString()
{
std::string str;
Var(*this).convert<std::string>(str);
Var(*this).template convert<std::string>(str);
return str;
}

Expand Down

0 comments on commit db95b94

Please sign in to comment.