diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-19 17:10:19 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-19 17:10:19 +0100 |
| commit | da7878360b0b4c58af922b491f5d775a867b191a (patch) | |
| tree | c71474f620ac1b81a4c42cf8590e81b556cff99f /lib/core/c++ | |
| parent | 8b3ade73997e9f87f1232b9dc9af35969e6f50dd (diff) | |
| download | libs-lbm-da7878360b0b4c58af922b491f5d775a867b191a.tar.gz | |
Moving the ghost layers
Diffstat (limited to 'lib/core/c++')
| -rw-r--r-- | lib/core/c++/chunk.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/core/c++/chunk.hpp b/lib/core/c++/chunk.hpp index bfef358..38b567b 100644 --- a/lib/core/c++/chunk.hpp +++ b/lib/core/c++/chunk.hpp @@ -32,7 +32,10 @@ using SuperChunk = Array<ChunkSchema,Dim>; namespace saw { template<typename Sch, uint64_t Dim, uint64_t Side, uint64_t Ghost, typename Encode> class data<kel::lbm::sch::Chunk<Sch,Dim,Side,Ghost>,Encode> final { +public: + using Schema = kel::lbm::sch::Chunk<Sch,Dim,Side,Ghost>; private: + data<Schema::InnerSchema, Encode> public: }; } |
