summaryrefslogtreecommitdiff
path: root/modules/core/c++
diff options
context:
space:
mode:
Diffstat (limited to 'modules/core/c++')
-rw-r--r--modules/core/c++/templates.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/core/c++/templates.hpp b/modules/core/c++/templates.hpp
index 70836ae..9f629da 100644
--- a/modules/core/c++/templates.hpp
+++ b/modules/core/c++/templates.hpp
@@ -9,7 +9,9 @@ namespace saw {
* This type is meant for grouping of template types
*/
template <class... T>
-struct tmpl_group {};
+struct tmpl_group {
+ static constexpr string_literal name = "tmpl_group";
+};
template<typename T, typename U>
struct tmpl_concat;