summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/core/c++/templates.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/c++/templates.hpp b/modules/core/c++/templates.hpp
index 7b0b297..31d5a7c 100644
--- a/modules/core/c++/templates.hpp
+++ b/modules/core/c++/templates.hpp
@@ -32,7 +32,7 @@ struct tmpl_concat<tmpl_group<T...>, tmpl_group<U...>> {
};
template<typename T, T... L, T... R>
-struct tmpl_concat<T,tmpl_value_group<T,L...>,tmpl_value_group<T,R...>> {
+struct tmpl_concat<tmpl_value_group<T,L...>,tmpl_value_group<T,R...>> {
using type = tmpl_value_group<T,L...,R...>;
};