summaryrefslogtreecommitdiff
path: root/modules/remote-filesystem/examples
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-07 13:53:09 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-07 13:53:09 +0100
commita20855d1788caae1c92c64a8ea6d0b2ef0610cfe (patch)
tree7fd9977f1d7b1dde65d78289305146f0f203cca1 /modules/remote-filesystem/examples
parent91ce43e0778354e0ba141d611a1aa08601c49a20 (diff)
downloadforstio-forstio-a20855d1788caae1c92c64a8ea6d0b2ef0610cfe.tar.gz
Trying to fix issues with templating
Diffstat (limited to 'modules/remote-filesystem/examples')
-rw-r--r--modules/remote-filesystem/examples/remote_read_file.cpp5
-rw-r--r--modules/remote-filesystem/examples/remote_write_file.cpp2
2 files changed, 2 insertions, 5 deletions
diff --git a/modules/remote-filesystem/examples/remote_read_file.cpp b/modules/remote-filesystem/examples/remote_read_file.cpp
index 39979d3..435c32e 100644
--- a/modules/remote-filesystem/examples/remote_read_file.cpp
+++ b/modules/remote-filesystem/examples/remote_read_file.cpp
@@ -18,7 +18,7 @@ int main(){
remote<rmt::File> file_remote;
- auto eo_addr = file_remote.parse_address("./example_file");
+ auto eo_addr = file_remote.parse_address("./example_file.kelsimple");
if(eo_addr.is_error()){
return 1;
}
@@ -30,9 +30,6 @@ int main(){
}
auto& dat_srv = eo_dat_srv.get_value();
- std::string a = "blafoobla";
- int64_t b = 42;
-
{
id<sch::Foo> foo_id{0u};
diff --git a/modules/remote-filesystem/examples/remote_write_file.cpp b/modules/remote-filesystem/examples/remote_write_file.cpp
index 6ec1586..6a2410e 100644
--- a/modules/remote-filesystem/examples/remote_write_file.cpp
+++ b/modules/remote-filesystem/examples/remote_write_file.cpp
@@ -18,7 +18,7 @@ int main(){
remote<rmt::File> file_remote;
- auto eo_addr = file_remote.parse_address("./example_file");
+ auto eo_addr = file_remote.parse_address("./example_file.kelsimple");
if(eo_addr.is_error()){
return 1;
}