From a87c98a15974803e9005541c94cc4ce1f39472a5 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Tue, 16 Jun 2015 19:22:38 +0300 Subject: [PATCH] Review fixes. --- base/math.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/math.hpp b/base/math.hpp index d8ecd2418c..b4900db52f 100644 --- a/base/math.hpp +++ b/base/math.hpp @@ -35,7 +35,7 @@ bool AlmostEqualULPs(TFloat x, TFloat y, unsigned int maxULPs = 256) // default NaN won't compare as equal to anything. ASSERT_LESS(maxULPs, 4 * 1024 * 1024, ()); - int const bits = 8 * sizeof(TFloat); + int const bits = CHAR_BIT * sizeof(TFloat); typedef typename boost::int_t::exact IntType; typedef typename boost::uint_t::exact UIntType;