Remove unused typedef in json_spirit

This fixes -Wunused-local-typedef with macOS's clang10.
This commit is contained in:
Itms
2024-09-14 19:24:07 +02:00
committed by Nicolas Auvray
parent b19dbb9bdb
commit 1c12ada278
@@ -34,8 +34,6 @@ namespace json_spirit
template< class String_type >
String_type non_printable_to_string( unsigned int c )
{
typedef typename String_type::value_type Char_type;
String_type result( 6, '\\' );
result[1] = 'u';