Base: remove unneeded includes
This commit is contained in:
committed by
Chris Hennes
parent
e7763236bc
commit
dda05369c4
@@ -434,7 +434,7 @@ static Py::Object _pyObjectFromAny(const App::any &value, const Expression *e) {
|
||||
} else if (is_type(value,typeid(bool)))
|
||||
return Py::Boolean(cast<bool>(value));
|
||||
else if (is_type(value,typeid(std::string)))
|
||||
return Py::String(cast<string>(value));
|
||||
return Py::String(cast<std::string>(value));
|
||||
else if (is_type(value,typeid(const char*)))
|
||||
return Py::String(cast<const char*>(value));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user