diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-07 13:17:34 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-07 13:17:34 +0100 |
| commit | 91ce43e0778354e0ba141d611a1aa08601c49a20 (patch) | |
| tree | e24c18407939a93b1171cb8c4ce871f863bb359a /modules | |
| parent | a3c116ab3676f6a19bc6cebe197db328cc548295 (diff) | |
| download | forstio-forstio-91ce43e0778354e0ba141d611a1aa08601c49a20.tar.gz | |
change stringview to fs path
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/remote-filesystem/c++/remote.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/remote-filesystem/c++/remote.hpp b/modules/remote-filesystem/c++/remote.hpp index f08dfb4..aa930b7 100644 --- a/modules/remote-filesystem/c++/remote.hpp +++ b/modules/remote-filesystem/c++/remote.hpp @@ -37,7 +37,7 @@ private: public: remote() = default; - error_or<own<remote_address<rmt::File>>> parse_address(const std::string_view& path_v){ + error_or<own<remote_address<rmt::File>>> parse_address(const std::filesystem::path& path_v){ return heap<remote_address<rmt::File>>(path_v); } |
