aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Togami <wtogami@gmail.com>2013-09-07 21:17:27 -1000
committerGavin Andresen <gavinandresen@gmail.com>2013-11-28 11:03:33 +1000
commite564297156b9103c5af85f6b444df0bdc2476397 (patch)
tree1eebee341dd751c41c89b123c12358d5620e40bb
parent83efc9104fa664aae67d152f996f828343cae4a1 (diff)
downloadbitcoin-e564297156b9103c5af85f6b444df0bdc2476397.tar.xz
Silence useless warning in src/json/json_spirit_writer_template.h to make important warnings easier to see.
warning: typedef ‘Char_type’ locally defined but not used [-Wunused-local-typedefs]
-rw-r--r--src/json/json_spirit_writer_template.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json/json_spirit_writer_template.h b/src/json/json_spirit_writer_template.h
index 28c49ddc64..6b4978a1ff 100644
--- a/src/json/json_spirit_writer_template.h
+++ b/src/json/json_spirit_writer_template.h
@@ -28,7 +28,8 @@ namespace json_spirit
template< class String_type >
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, '\\' );