Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58632 - trunk/boost/functional/hash/detail
From: daniel_james_at_[hidden]
Date: 2010-01-02 06:12:24


Author: danieljames
Date: 2010-01-02 06:12:23 EST (Sat, 02 Jan 2010)
New Revision: 58632
URL: http://svn.boost.org/trac/boost/changeset/58632

Log:
Rename namespace BOOST_HASH_DETECT_FLOAT_FUNCTIONS to lower case for consistency.
Text files modified:
   trunk/boost/functional/hash/detail/float_functions.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/functional/hash/detail/float_functions.hpp
==============================================================================
--- trunk/boost/functional/hash/detail/float_functions.hpp (original)
+++ trunk/boost/functional/hash/detail/float_functions.hpp 2010-01-02 06:12:23 EST (Sat, 02 Jan 2010)
@@ -84,7 +84,7 @@
 // the boost namespace they'll always be preferable to any other function
 // (since the arguments are built in types, ADL can't be used).
 
-namespace BOOST_HASH_DETECT_FLOAT_FUNCTIONS {
+namespace boost_hash_detect_float_functions {
     template <class Float> boost::hash_detail::not_found ldexp(Float, int);
     template <class Float> boost::hash_detail::not_found frexp(Float, int*);
 }
@@ -103,7 +103,7 @@
 // happen mainly when there's a template in the same namesapce.
 
 #define BOOST_HASH_CALL_FLOAT_FUNC(cpp_func, c99_func, type1, type2) \
-namespace BOOST_HASH_DETECT_FLOAT_FUNCTIONS { \
+namespace boost_hash_detect_float_functions { \
     template <class Float> \
     boost::hash_detail::not_found c99_func(Float, type2); \
 } \
@@ -112,7 +112,7 @@
     namespace hash_detail { \
         namespace c99_func##_detect { \
             using namespace std; \
- using namespace BOOST_HASH_DETECT_FLOAT_FUNCTIONS; \
+ using namespace boost_hash_detect_float_functions; \
                                                                         \
             struct check { \
                 static type1 x; \


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk