From 9d6106a80bb7c254d0878a3630f0e61470924d7d Mon Sep 17 00:00:00 2001 From: Miguel Portilla Date: Wed, 25 Feb 2015 17:00:11 -0500 Subject: [PATCH] Require boost 1.57 --- src/ripple/app/main/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ripple/app/main/Main.cpp b/src/ripple/app/main/Main.cpp index bd37298ee..878c82587 100644 --- a/src/ripple/app/main/Main.cpp +++ b/src/ripple/app/main/Main.cpp @@ -465,8 +465,8 @@ int main (int argc, char** argv) "GCC version 4.8.1 or later is required to compile rippled."); #endif - static_assert (BOOST_VERSION >= 105500, - "Boost version 1.55 or later is required to compile rippled"); + static_assert (BOOST_VERSION >= 105700, + "Boost version 1.57 or later is required to compile rippled"); // // These debug heap calls do nothing in release or non Visual Studio builds.