Update ghoul to account for removed boost dependency

This commit is contained in:
Alexander Bock
2016-03-15 23:59:57 +01:00
parent fd5f26f757
commit c3aa8fecc2
13 changed files with 34 additions and 39 deletions
+3 -3
View File
@@ -82,15 +82,15 @@ std::string Property::fullyQualifiedIdentifier() const {
return identifier;
}
boost::any Property::get() const {
return boost::any();
ghoul::any Property::get() const {
return ghoul::any();
}
bool Property::getLuaValue(lua_State* state) const {
return false;
}
void Property::set(boost::any value) {}
void Property::set(ghoul::any value) {}
bool Property::setLuaValue(lua_State* state) {
return false;
+1 -1
View File
@@ -40,7 +40,7 @@ bool TriggerProperty::setLuaValue(lua_State* state) {
return true;
}
void TriggerProperty::set(boost::any value) {
void TriggerProperty::set(ghoul::any value) {
notifyListener();
}