diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-07-11 14:14:36 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-07-11 14:14:36 +0200 |
commit | 869974982752cd37e808283af629ea0bbb680393 (patch) | |
tree | 84bdb4c7079b09fa0ac215ad78922beb2221bc03 /c++/descriptor.hpp | |
parent | 96123e1331eabbfb0f5104857035df42096c7548 (diff) |
Writing was flipped on non square, cubic domains
Diffstat (limited to 'c++/descriptor.hpp')
-rw-r--r-- | c++/descriptor.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/c++/descriptor.hpp b/c++/descriptor.hpp index 23c82f2..0d05a04 100644 --- a/c++/descriptor.hpp +++ b/c++/descriptor.hpp @@ -202,6 +202,7 @@ public: data<Sch, Encode>& operator()(const data<schema::UInt64>& index){ return inner_.at(index); } + const data<Sch, Encode>& operator()(const data<schema::UInt64>& index)const{ return inner_.at(index); } |