From 9a01462a875615f5f25775143e84294784eddff5 Mon Sep 17 00:00:00 2001 From: Ravenwater Date: Sat, 25 Nov 2023 21:26:29 -0500 Subject: [PATCH] compilation fix for gcc and clang --- include/universal/number/einteger/manipulators.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/universal/number/einteger/manipulators.hpp b/include/universal/number/einteger/manipulators.hpp index 57f8275fc..5198c856e 100644 --- a/include/universal/number/einteger/manipulators.hpp +++ b/include/universal/number/einteger/manipulators.hpp @@ -13,7 +13,7 @@ template, bool> = true> std::string type_tag(const ElasticIntegerType & = {}) { std::stringstream s; - s << "einteger<" << typeid(ElasticIntegerType::bt).name() << '>'; + s << "einteger<" << typeid(typename ElasticIntegerType::bt).name() << '>'; return s.str(); }