forked from boostorg/core
Remove extra semicolons
This commit is contained in:
@ -246,7 +246,7 @@ template<class T> int tn_add_each_impl( std::string& st )
|
|||||||
if( !st.empty() ) st += ", ";
|
if( !st.empty() ) st += ", ";
|
||||||
st += type_name( tn_identity<T>(), "" );
|
st += type_name( tn_identity<T>(), "" );
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
|
|
||||||
template<class... T> std::string tn_add_each()
|
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 )... };
|
(void)A{ 0, tn_add_each_impl<T>( st )... };
|
||||||
|
|
||||||
return st;
|
return st;
|
||||||
};
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user