mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-21 01:59:15 -05:00
Update ghoul to account for removed boost dependency
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user