1
0
forked from boostorg/core

Use typedef instead of using

This commit is contained in:
Peter Dimov
2021-09-29 19:51:16 +03:00
parent 15a7d84858
commit dc6e3261ec

View File

@ -131,7 +131,7 @@ template<class... T> 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<T>( st )... };
return st;