More compile fixes for Jenkins

This commit is contained in:
Alexander Bock
2014-09-14 23:49:38 +02:00
parent b30de7726e
commit 50494cffdd

View File

@@ -183,7 +183,7 @@ bool NumericalProperty<T>::setLua(lua_State* state)
bool success;
T value = PropertyDelegate<NumericalProperty<T>>::template fromLuaValue<T>(state, success);
if (success)
setValue(value);
TemplateProperty<T>::setValue(value);
return success;
}