From a25b64c8b9d6fcc12fbdd490096d1e1abb3d9e05 Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Sun, 5 Jul 2015 17:01:47 +0200 Subject: [PATCH] One more GCC fix --- include/openspace/properties/numericalproperty.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openspace/properties/numericalproperty.inl b/include/openspace/properties/numericalproperty.inl index 7e73993feb..a5770e03b3 100644 --- a/include/openspace/properties/numericalproperty.inl +++ b/include/openspace/properties/numericalproperty.inl @@ -312,7 +312,7 @@ bool NumericalProperty::setStringValue(std::string value) { bool success = false; T thisValue = PropertyDelegate>::template fromString(value, success); if (success) - set(boost::any(thisValue)); + TemplateProperty::set(boost::any(thisValue)); return success; }