1
0
forked from boostorg/core

Remove extra semicolons

This commit is contained in:
Peter Dimov
2021-10-05 15:53:16 +03:00
parent 8ab119135c
commit 6985b1ae25

View File

@ -246,7 +246,7 @@ template<class T> int tn_add_each_impl( std::string& st )
if( !st.empty() ) st += ", ";
st += type_name( tn_identity<T>(), "" );
return 0;
};
}
template<class... T> std::string tn_add_each()
{
@ -256,7 +256,7 @@ template<class... T> std::string tn_add_each()
(void)A{ 0, tn_add_each_impl<T>( st )... };
return st;
};
}
#endif