One more GCC fix

This commit is contained in:
Alexander Bock
2015-07-05 17:01:47 +02:00
parent 35cdfd4abe
commit a25b64c8b9

View File

@@ -312,7 +312,7 @@ bool NumericalProperty<T>::setStringValue(std::string value) {
bool success = false;
T thisValue = PropertyDelegate<NumericalProperty<T>>::template fromString<T>(value, success);
if (success)
set(boost::any(thisValue));
TemplateProperty<T>::set(boost::any(thisValue));
return success;
}