mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-13 16:48:08 +00:00
Merge pull request #2980 from wtogami/silenceunusedwarning
Silence useless warning in src/json/json_spirit_writer_template.h to mak...
This commit is contained in:
commit
07866e3cd6
@ -28,7 +28,8 @@ namespace json_spirit
|
|||||||
template< class String_type >
|
template< class String_type >
|
||||||
String_type non_printable_to_string( unsigned int c )
|
String_type non_printable_to_string( unsigned int c )
|
||||||
{
|
{
|
||||||
typedef typename String_type::value_type Char_type;
|
// Silence the warning: typedef ‘Char_type’ locally defined but not used [-Wunused-local-typedefs]
|
||||||
|
// typedef typename String_type::value_type Char_type;
|
||||||
|
|
||||||
String_type result( 6, '\\' );
|
String_type result( 6, '\\' );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user