$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2008-01-08 06:26:34
Author: danieljames
Date: 2008-01-08 06:26:33 EST (Tue, 08 Jan 2008)
New Revision: 42607
URL: http://svn.boost.org/trac/boost/changeset/42607
Log:
Change an odd modifier ordering.
Text files modified:
branches/unordered/trunk/boost/unordered/detail/hash_table.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/unordered/trunk/boost/unordered/detail/hash_table.hpp
==============================================================================
--- branches/unordered/trunk/boost/unordered/detail/hash_table.hpp (original)
+++ branches/unordered/trunk/boost/unordered/detail/hash_table.hpp 2008-01-08 06:26:33 EST (Tue, 08 Jan 2008)
@@ -48,8 +48,8 @@
namespace unordered_detail {
template <class T> struct type_wrapper {};
- const static std::size_t default_initial_bucket_count = 50;
- const static float minimum_max_load_factor = 1e-3f;
+ static const std::size_t default_initial_bucket_count = 50;
+ static const float minimum_max_load_factor = 1e-3f;
inline std::size_t next_prime(std::size_t n);
template <class T>