diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libs/engine/GraphObjectImpl.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/engine/GraphObjectImpl.hpp b/src/libs/engine/GraphObjectImpl.hpp index c48ad049..b5a259af 100644 --- a/src/libs/engine/GraphObjectImpl.hpp +++ b/src/libs/engine/GraphObjectImpl.hpp @@ -66,7 +66,7 @@ public: virtual void set_path(const Path& new_path) { assert(new_path.parent() == path().parent()); _name = new_path.name(); - assert(_name.find("/") == string::npos); + assert(_name.find("/") == std::string::npos); } void set_variable(const std::string& key, const Atom& value) |