summaryrefslogtreecommitdiff
path: root/modules/remote-filesystem/examples/remote_read_file.cpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-09-10 20:47:35 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-09-10 20:47:35 +0200
commit2dcbc3bd263907a424b68bb3393dfadd8a29f239 (patch)
tree17671759c3e539aa8567d162ea97f202713b08f1 /modules/remote-filesystem/examples/remote_read_file.cpp
parenta4456ca179fe154cfd797225c16d4baf011abaee (diff)
Fixing compile errors from last change
Diffstat (limited to 'modules/remote-filesystem/examples/remote_read_file.cpp')
-rw-r--r--modules/remote-filesystem/examples/remote_read_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/remote-filesystem/examples/remote_read_file.cpp b/modules/remote-filesystem/examples/remote_read_file.cpp
index b0b2c89..39979d3 100644
--- a/modules/remote-filesystem/examples/remote_read_file.cpp
+++ b/modules/remote-filesystem/examples/remote_read_file.cpp
@@ -52,7 +52,7 @@ int main(){
}
std::cout<<"a: ";
- for(uint64_t i = 0; i < nat_foo.template get<"a">().size();++i) std::cout<<nat_foo.template get<"a">().at(i);
+ for(uint64_t i = 0; i < nat_foo.template get<"a">().size().get();++i) std::cout<<nat_foo.template get<"a">().at(i);
std::cout<<"\nb: "<<nat_foo.template get<"b">().get()<<std::endl;
}
return 0;