From 485d4b48976f06db435c01d0c0bdc6ff4c2f2b1a Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 7 Oct 2013 14:24:13 -0700 Subject: [PATCH] Fix order of includes --- src/ripple/json/ripple_json.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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 );