| 84 | } |
| 85 | |
| 86 | void MountablePath::Unmount(const MountablePath path) |
| 87 | { |
| 88 | MountedPaths.erase( |
| 89 | std::remove_if(MountedPaths.begin(), MountedPaths.end(), |
| 90 | [path](MountablePath& mountablePath) { return mountablePath == path; }), |
| 91 | MountedPaths.end()); |
| 92 | } |
| 93 | |
| 94 | const std::vector<MountablePath>& MountablePath::Paths() |
| 95 | { |