From db95b94c8cd89fd3668bf9baed35da719f6b83c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A4us=20Mendel?= Date: Mon, 7 Mar 2016 16:28:02 -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/Struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Dynamic/Struct.h b/Foundation/include/Poco/Dynamic/Struct.h index 7f419cad3..83875785e 100644 --- a/Foundation/include/Poco/Dynamic/Struct.h +++ b/Foundation/include/Poco/Dynamic/Struct.h @@ -190,7 +190,7 @@ public: std::string toString() { std::string str; - Var(*this).convert(str); + Var(*this).template convert(str); return str; }