summaryrefslogtreecommitdiff
path: root/boost/container/detail/math_functions.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/detail/math_functions.hpp')
-rw-r--r--boost/container/detail/math_functions.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/container/detail/math_functions.hpp b/boost/container/detail/math_functions.hpp
index 4613573d48..fe8386be69 100644
--- a/boost/container/detail/math_functions.hpp
+++ b/boost/container/detail/math_functions.hpp
@@ -1,10 +1,10 @@
//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Stephen Cleary 2000.
-// (C) Copyright Ion Gaztanaga 2007-2011.
+// (C) Copyright Ion Gaztanaga 2007-2012.
//
// Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt or copy at
+// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/container for documentation.
@@ -94,7 +94,7 @@ inline std::size_t floor_log2 (std::size_t x)
std::size_t n = x;
std::size_t log2 = 0;
-
+
for(std::size_t shift = Bits >> 1; shift; shift >>= 1){
std::size_t tmp = n >> shift;
if (tmp)