diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-08-14 10:19:32 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-08-14 10:19:32 +0200 |
commit | 2a442407538628b7b04c63c0643d521739de6b69 (patch) | |
tree | 5fa20a4786b868e81ad26d9ccd16ec62ba159d5a /modules/remote-filesystem/c++/transport.hpp | |
parent | fad5d37382552af7328dd67d038c1eaf44cf0aee (diff) |
Adding a macro for simpler test writing and wip on fs
Diffstat (limited to 'modules/remote-filesystem/c++/transport.hpp')
-rw-r--r-- | modules/remote-filesystem/c++/transport.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/remote-filesystem/c++/transport.hpp b/modules/remote-filesystem/c++/transport.hpp index 367f533..0db4600 100644 --- a/modules/remote-filesystem/c++/transport.hpp +++ b/modules/remote-filesystem/c++/transport.hpp @@ -32,12 +32,10 @@ public: error_or<void> send(const data<Schema, Encoding>& dat, id<Schema> store_id){ try { } - return make_error<err::not_implemented>(); } error_or<void> allocate(data<typename meta_schema<Schema>::MetaSchema, Encoding> meta, id<Schema> store_id){ - return make_error<err::not_implemented>(); } @@ -46,7 +44,7 @@ public: } error_or<data<Schema,Encoding>> receive(id<Schema> store_id){ - + return make_error<err::not_implemented>(); } }; |