diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-09-10 20:47:35 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-09-10 20:47:35 +0200 |
| commit | 2dcbc3bd263907a424b68bb3393dfadd8a29f239 (patch) | |
| tree | 17671759c3e539aa8567d162ea97f202713b08f1 /modules/remote-filesystem/examples | |
| parent | a4456ca179fe154cfd797225c16d4baf011abaee (diff) | |
| download | forstio-forstio-2dcbc3bd263907a424b68bb3393dfadd8a29f239.tar.gz | |
Fixing compile errors from last change
Diffstat (limited to 'modules/remote-filesystem/examples')
| -rw-r--r-- | modules/remote-filesystem/examples/remote_read_file.cpp | 2 |
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; |
