diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-07 13:53:09 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-11-07 13:53:09 +0100 |
| commit | a20855d1788caae1c92c64a8ea6d0b2ef0610cfe (patch) | |
| tree | 7fd9977f1d7b1dde65d78289305146f0f203cca1 /modules/remote-filesystem/c++ | |
| parent | 91ce43e0778354e0ba141d611a1aa08601c49a20 (diff) | |
| download | forstio-forstio-a20855d1788caae1c92c64a8ea6d0b2ef0610cfe.tar.gz | |
Trying to fix issues with templating
Diffstat (limited to 'modules/remote-filesystem/c++')
| -rw-r--r-- | modules/remote-filesystem/c++/easy.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/remote-filesystem/c++/easy.hpp b/modules/remote-filesystem/c++/easy.hpp index 9fc8af7..e6222f7 100644 --- a/modules/remote-filesystem/c++/easy.hpp +++ b/modules/remote-filesystem/c++/easy.hpp @@ -57,7 +57,7 @@ error_or<data<Sch,Enc>> read_and_decode_file(const std::filesystem::path& p_){ auto& srv = eo_srv.get_value(); id<Sch> fid{0u}; - auto eo_read = srv->receive({fid}); + auto eo_read = srv->receive(fid); if(eo_read.is_error()){ return eo_read; } |
