diff options
Diffstat (limited to 'src/cstore/unionfs/fspath.hpp')
-rw-r--r-- | src/cstore/unionfs/fspath.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cstore/unionfs/fspath.hpp b/src/cstore/unionfs/fspath.hpp index 35985ed..fbaafd6 100644 --- a/src/cstore/unionfs/fspath.hpp +++ b/src/cstore/unionfs/fspath.hpp @@ -65,6 +65,7 @@ public: }; size_t length() const { return _data.length(); }; + size_t size() const { return _data.size(); }; bool has_parent_path() const { return (_data.size() > 0); }; const char *path_cstr() const { return _data.get_cstr(); }; size_t hash() const { return _data.hash(); }; |