| 108 | } |
| 109 | |
| 110 | void MountablePath::Sort() |
| 111 | { |
| 112 | std::sort(MountedPaths.begin(), MountedPaths.end(), |
| 113 | [](const MountablePath& first, const MountablePath& second) { |
| 114 | return first.priority > second.priority; |
| 115 | }); |
| 116 | } |
| 117 | } // namespace obe::System |