| 56 | unsigned int _depth; |
| 57 | public: |
| 58 | Path(const std::string& path) : |
| 59 | _path(path), |
| 60 | _depth(getPathDepth(_path.c_str())) |
| 61 | {} |
| 62 | |
| 63 | Path(const char* start, std::size_t length) : |
| 64 | Path(std::string(start, length)) |
nothing calls this directly
no test coverage detected