Fix order of includes

This commit is contained in:
Vinnie Falco
2013-10-07 14:24:13 -07:00
parent fb6ecebbd1
commit 485d4b4897

View File

@@ -17,9 +17,13 @@
*/
//==============================================================================
#include "BeastConfig.h"
#include <cassert>
#include <iomanip>
#include <sstream>
#include <string>
// For json/
//
#ifdef JSON_USE_CPPTL
@@ -33,11 +37,6 @@
#include "ripple_json.h"
#include <cassert>
#include <iomanip>
#include <sstream>
#include <string>
#define JSON_ASSERT_UNREACHABLE assert( false )
#define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw
#define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) throw std::runtime_error( message );