From d1f5daec8b3e85ed373148735b232ce52477d8af Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 26 Mar 2020 17:21:31 -0400 Subject: [PATCH] boost: fix misleading indent --- .../include/boost/archive/basic_text_oprimitive.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundled/boost-1.70.0/include/boost/archive/basic_text_oprimitive.hpp b/bundled/boost-1.70.0/include/boost/archive/basic_text_oprimitive.hpp index 45f09358ec..047019b13e 100644 --- a/bundled/boost-1.70.0/include/boost/archive/basic_text_oprimitive.hpp +++ b/bundled/boost-1.70.0/include/boost/archive/basic_text_oprimitive.hpp @@ -166,9 +166,9 @@ protected: // note: I've commented out the above because I didn't get good results. e.g. // in one case I got a difference of 19 units. #ifndef BOOST_NO_CXX11_NUMERIC_LIMITS - const unsigned int digits = std::numeric_limits::max_digits10; + const unsigned int digits = std::numeric_limits::max_digits10; #else - const unsigned int digits = std::numeric_limits::digits10 + 2; + const unsigned int digits = std::numeric_limits::digits10 + 2; #endif os << std::setprecision(digits) << std::scientific << t; } -- 2.39.5