diff --git a/include/boost/core/type_name.hpp b/include/boost/core/type_name.hpp index d8ea942..f155943 100644 --- a/include/boost/core/type_name.hpp +++ b/include/boost/core/type_name.hpp @@ -246,7 +246,7 @@ template int tn_add_each_impl( std::string& st ) if( !st.empty() ) st += ", "; st += type_name( tn_identity(), "" ); return 0; -}; +} template std::string tn_add_each() { @@ -256,7 +256,7 @@ template std::string tn_add_each() (void)A{ 0, tn_add_each_impl( st )... }; return st; -}; +} #endif