From: Timo Heister Date: Thu, 26 Mar 2020 21:21:31 +0000 (-0400) Subject: boost: fix misleading indent X-Git-Tag: v9.2.0-rc1~357^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1f5daec8b3e85ed373148735b232ce52477d8af;p=dealii.git boost: fix misleading indent --- 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; }