diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-21 01:31:33 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-07-21 01:31:33 +0200 |
commit | a8f3da04b7d924d6bc8a38b15c7f0def4240a76a (patch) | |
tree | b6239d8f2ecab577beafb083983cb49dc0a949b7 /c++/descriptor.h | |
parent | c30924f6f9f14949720f01fafc463dde95d1ffab (diff) |
c++: Flipped template parameter positions
Diffstat (limited to 'c++/descriptor.h')
-rw-r--r-- | c++/descriptor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/descriptor.h b/c++/descriptor.h index f0f7f28..c09b312 100644 --- a/c++/descriptor.h +++ b/c++/descriptor.h @@ -24,7 +24,7 @@ using CellData = Struct< /** * T is an array of CellData */ -template<size_t D, typename T> +template<typename T, size_t D> using Lattice = Array<T, D>; } } |