From 7db8176624ac1abaa5d3b4f45c392812d64d101c Mon Sep 17 00:00:00 2001 From: John Jones Date: Mon, 9 Apr 2018 17:29:57 -0500 Subject: [PATCH] Moved headers within #if macro for cleanliness --- src/stacktrace.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stacktrace.cpp b/src/stacktrace.cpp index ab4e4d0..2504bb1 100644 --- a/src/stacktrace.cpp +++ b/src/stacktrace.cpp @@ -1,12 +1,12 @@ // // A stacktrace handler for bitshares // - -#include -#include +#include // only include stacktrace stuff if boost >= 1.65 #if BOOST_VERSION / 100000 >= 1 && ((BOOST_VERSION / 100) % 1000) >= 65 +#include +#include #include namespace fc