diff --git a/include/boost/core/type_name.hpp b/include/boost/core/type_name.hpp index 64d98a6..8f1df5f 100644 --- a/include/boost/core/type_name.hpp +++ b/include/boost/core/type_name.hpp @@ -131,7 +131,7 @@ template std::string tn_add_each() { std::string st; - using A = int[ sizeof...(T) + 1 ]; + typedef int A[ sizeof...(T) + 1 ]; (void)A{ 0, tn_add_each_impl( st )... }; return st;