summaryrefslogtreecommitdiff
path: root/c++/descriptor.h
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-03-19 13:03:30 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-03-19 13:03:30 +0100
commit4475cc3d61d6bc6b522521c53079a747a0546e3e (patch)
tree3232445c1421e18a1c9b649a5b44213ff7e3be47 /c++/descriptor.h
parentd3a0d0bed39e4da5e66a4fe0244c7cb111caee19 (diff)
Type issue fixed
Diffstat (limited to 'c++/descriptor.h')
-rw-r--r--c++/descriptor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/descriptor.h b/c++/descriptor.h
index b005af2..052365d 100644
--- a/c++/descriptor.h
+++ b/c++/descriptor.h
@@ -70,7 +70,7 @@ struct meta_schema<kel::lbm::sch::Cell<T,Desc,S,D,Q>> {
template<typename Desc, typename CellT>
struct meta_schema<kel::lbm::sch::Field<Desc, CellT>> {
- using MetaSchema = schema::FixedArray<schema::UInt64,CellT::Descriptor::D>;
+ using MetaSchema = schema::FixedArray<schema::UInt64,Desc::D>;
using Schema = kel::lbm::sch::Field<Desc, CellT>;
};