From b3423e660141b81be67d1292b00777432ceb23ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A4us=20Mendel?= Date: Fri, 11 Mar 2016 10:17:33 -0300 Subject: [PATCH] Fixed compilation on IBM XLC due to incorrect function call Templated functions dependent of a templated class must be prefixed with the "template" keyword. --- Foundation/include/Poco/Dynamic/Pair.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Dynamic/Pair.h b/Foundation/include/Poco/Dynamic/Pair.h index b16f833b2..aab63f993 100644 --- a/Foundation/include/Poco/Dynamic/Pair.h +++ b/Foundation/include/Poco/Dynamic/Pair.h @@ -98,7 +98,7 @@ public: std::string toString() { std::string str; - Var(*this).convert(str); + Var(*this).template convert(str); return str; }