--- /home/sjk/work/mct-1.6.0/mct/impl/closed-hash-table.hpp 2012-06-09 15:30:14.000000000 -0400 +++ closed-hash-table.hpp 2012-11-07 17:18:15.804378967 -0500 @@ -523,7 +523,7 @@ limit_max_count (std::size_t max_count) { return std::min (max_count, - static_cast ((std::numeric_limits ::max () >> 1) + 1)); + static_cast ((std::numeric_limits::max() >> 1) + 1)); } @@ -537,11 +537,11 @@ static int empty_value () - { return std::numeric_limits ::max (); } + { return std::numeric_limits::max(); } static int debris_value () - { return std::numeric_limits ::max () - 1; } + { return std::numeric_limits::max() - 1; } };