diff --git a/src/ripple/json/ripple_json.cpp b/src/ripple/json/ripple_json.cpp index e937453ca..78c51b18c 100644 --- a/src/ripple/json/ripple_json.cpp +++ b/src/ripple/json/ripple_json.cpp @@ -17,9 +17,13 @@ */ //============================================================================== - #include "BeastConfig.h" +#include +#include +#include +#include + // For json/ // #ifdef JSON_USE_CPPTL @@ -33,11 +37,6 @@ #include "ripple_json.h" -#include -#include -#include -#include - #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 );