mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-31 16:04:27 +02:00
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:
parent
d17882f6d0
commit
db95b94c8c
@ -190,7 +190,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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user