diff options
Diffstat (limited to 'src/stackindex.hpp')
-rw-r--r-- | src/stackindex.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/stackindex.hpp b/src/stackindex.hpp index c414ce2..e7c1d8b 100644 --- a/src/stackindex.hpp +++ b/src/stackindex.hpp | |||
@@ -5,6 +5,9 @@ | |||
5 | DECLARE_UNIQUE_TYPE(StackIndex, int); | 5 | DECLARE_UNIQUE_TYPE(StackIndex, int); |
6 | static_assert(std::is_trivial_v<StackIndex>); | 6 | static_assert(std::is_trivial_v<StackIndex>); |
7 | 7 | ||
8 | DECLARE_UNIQUE_TYPE(TableIndex, int); | ||
9 | static_assert(std::is_trivial_v<TableIndex>); | ||
10 | |||
8 | DECLARE_UNIQUE_TYPE(UserValueIndex, int); | 11 | DECLARE_UNIQUE_TYPE(UserValueIndex, int); |
9 | static_assert(std::is_trivial_v<UserValueIndex>); | 12 | static_assert(std::is_trivial_v<UserValueIndex>); |
10 | 13 | ||
@@ -12,7 +15,7 @@ DECLARE_UNIQUE_TYPE(UserValueCount, int); | |||
12 | static_assert(std::is_trivial_v<UserValueCount>); | 15 | static_assert(std::is_trivial_v<UserValueCount>); |
13 | 16 | ||
14 | DECLARE_UNIQUE_TYPE(UnusedInt, int); | 17 | DECLARE_UNIQUE_TYPE(UnusedInt, int); |
15 | static_assert(std::is_trivial_v<UserValueCount>); | 18 | static_assert(std::is_trivial_v<UnusedInt>); |
16 | 19 | ||
17 | // ################################################################################################# | 20 | // ################################################################################################# |
18 | 21 | ||