From 6985b1ae25a51170c52434cefb169f834887aa1d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 5 Oct 2021 15:53:16 +0300 Subject: [PATCH] Remove extra semicolons --- include/boost/core/type_name.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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