diff --git a/include/boost/uuid/uuid_io.hpp b/include/boost/uuid/uuid_io.hpp index f494d21..2882ea7 100644 --- a/include/boost/uuid/uuid_io.hpp +++ b/include/boost/uuid/uuid_io.hpp @@ -79,7 +79,7 @@ BOOST_CXX14_CONSTEXPR inline Ch* to_chars( uuid const& u, Ch (&buffer)[ 36 ] ) n template std::basic_ostream& operator<<( std::basic_ostream& os, uuid const& u ) { - alignas( 16 ) char tmp[ 37 ]; + alignas( 16 ) Ch tmp[ 37 ]; to_chars( u, tmp ); os << tmp;