MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / Unmount

Method Unmount

src/Core/System/MountablePath.cpp:86–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 3

eraseMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected