Code style fix (no "tab" symbol).
[novacoin.git] / src / json / json_spirit_writer_template.h
index 28c49dd..8e7a168 100644 (file)
@@ -28,8 +28,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';
@@ -75,6 +73,7 @@ namespace json_spirit
 
             if( add_esc_char( c, result ) ) continue;
 
+            // FIXME: This comparison is always true on some platforms
             const wint_t unsigned_c( ( c >= 0 ) ? c : 256 + c );
 
             if( iswprint( unsigned_c ) )