fs_find_mount_point.hpp

This commit is contained in:
Antonio SJ Musumeci 2025-04-16 10:57:32 -05:00
parent e9b394ea52
commit d28a63c9f5
2 changed files with 3 additions and 0 deletions

View File

@ -9,3 +9,4 @@
* fmt: https://github.com/fmtlib/fmt
* concurrentqueue: https://github.com/cameron314/concurrentqueue
* scope_guard: https://github.com/Neargye/scope_guard
* expected-lite: https://github.com/martinmoene/expected-lite

View File

@ -19,8 +19,10 @@
#pragma once
#include "ghc/filesystem.hpp"
#include "nonstd/expected.hpp"
namespace fs
{
typedef ECPath nonstd::expected<
ghc::filesystem::path find_mount_point(const ghc::filesystem::path &path);
}