aboutsummaryrefslogtreecommitdiff
path: root/src/json
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2012-01-19 14:32:45 -0500
committerGavin Andresen <gavinandresen@gmail.com>2012-01-19 14:32:45 -0500
commit1240a1b0a82e0e944a6fdcf6ff26001e1bd68904 (patch)
tree386b58d8f382a4a644a844022818ed356fbb0b82 /src/json
parent7012b124bc7bbd80f7219c8122f06143c1c6c32f (diff)
downloadbitcoin-1240a1b0a82e0e944a6fdcf6ff26001e1bd68904.tar.xz
Back out spacing changes to json spirit code
Diffstat (limited to 'src/json')
-rw-r--r--src/json/json_spirit_reader_template.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/json/json_spirit_reader_template.h b/src/json/json_spirit_reader_template.h
index 12d1e7919f..4dec00e6c9 100644
--- a/src/json/json_spirit_reader_template.h
+++ b/src/json/json_spirit_reader_template.h
@@ -380,32 +380,32 @@ namespace json_spirit
static void throw_not_value( Iter_type begin, Iter_type end )
{
- throw_error( begin, "not a value" );
+ throw_error( begin, "not a value" );
}
static void throw_not_array( Iter_type begin, Iter_type end )
{
- throw_error( begin, "not an array" );
+ throw_error( begin, "not an array" );
}
static void throw_not_object( Iter_type begin, Iter_type end )
{
- throw_error( begin, "not an object" );
+ throw_error( begin, "not an object" );
}
static void throw_not_pair( Iter_type begin, Iter_type end )
{
- throw_error( begin, "not a pair" );
+ throw_error( begin, "not a pair" );
}
static void throw_not_colon( Iter_type begin, Iter_type end )
{
- throw_error( begin, "no colon in pair" );
+ throw_error( begin, "no colon in pair" );
}
static void throw_not_string( Iter_type begin, Iter_type end )
{
- throw_error( begin, "not a string" );
+ throw_error( begin, "not a string" );
}
template< typename ScannerT >