Convert std::bad_any_cast back to ghoul::bad_any_cast

This commit is contained in:
Alexander Bock
2017-07-17 16:25:27 -04:00
parent 40926aa68f
commit 7cfa358f04
@@ -226,7 +226,7 @@ void TemplateProperty<T>::set(ghoul::any value) {
notifyListener();
}
}
catch (std::bad_any_cast&) {
catch (ghoul::bad_any_cast&) {
LERRORC("TemplateProperty", "Illegal cast from '" << value.type().name()
<< "' to '" << typeid(T).name() << "'");
}