Moved headers within #if macro for cleanliness

This commit is contained in:
John Jones 2018-04-09 17:29:57 -05:00
parent 133fe62048
commit 7db8176624

View file

@ -1,12 +1,12 @@
// //
// A stacktrace handler for bitshares // A stacktrace handler for bitshares
// //
#include <ostream>
#include <signal.h>
#include <fc/log/logger.hpp>
// only include stacktrace stuff if boost >= 1.65 // only include stacktrace stuff if boost >= 1.65
#if BOOST_VERSION / 100000 >= 1 && ((BOOST_VERSION / 100) % 1000) >= 65 #if BOOST_VERSION / 100000 >= 1 && ((BOOST_VERSION / 100) % 1000) >= 65
#include <signal.h>
#include <fc/log/logger.hpp>
#include <boost/stacktrace.hpp> #include <boost/stacktrace.hpp>
namespace fc namespace fc