Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63374 - in sandbox/chrono/boost/chrono: . detail typeof/boost typeof/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2010-06-27 05:52:53


Author: viboes
Date: 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
New Revision: 63374
URL: http://svn.boost.org/trac/boost/changeset/63374

Log:
Replace uses of __ by _
Text files modified:
   sandbox/chrono/boost/chrono/chrono.hpp | 6 +++---
   sandbox/chrono/boost/chrono/detail/adaptive_string.hpp | 4 ++--
   sandbox/chrono/boost/chrono/detail/default_out.hpp | 4 ++--
   sandbox/chrono/boost/chrono/detail/static_assert.hpp | 8 ++++----
   sandbox/chrono/boost/chrono/stopclock_accumulator.hpp | 4 ++--
   sandbox/chrono/boost/chrono/stopwatches.hpp | 6 +++---
   sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp | 4 ++--
   sandbox/chrono/boost/chrono/typeof/boost/ratio.hpp | 4 ++--
   8 files changed, 20 insertions(+), 20 deletions(-)

Modified: sandbox/chrono/boost/chrono/chrono.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/chrono.hpp (original)
+++ sandbox/chrono/boost/chrono/chrono.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -56,8 +56,8 @@
 
 */
 
-#ifndef BOOST_CHRONO_CHRONO__HPP
-#define BOOST_CHRONO_CHRONO__HPP
+#ifndef BOOST_CHRONO_CHRONO_HPP
+#define BOOST_CHRONO_CHRONO_HPP
 
 #include <boost/chrono/config.hpp>
 #include <boost/chrono/detail/static_assert.hpp>
@@ -1096,4 +1096,4 @@
 
 #include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas
 
-#endif // BOOST_CHRONO_HPP
+#endif // BOOST_CHRONO_CHRONO_HPP

Modified: sandbox/chrono/boost/chrono/detail/adaptive_string.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/detail/adaptive_string.hpp (original)
+++ sandbox/chrono/boost/chrono/detail/adaptive_string.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -7,8 +7,8 @@
 
 // See http://www.boost.org/libs/system for documentation.
 
-#ifndef BOOST_CHRONO_DETAIL_ADAPTIVE_STRING__HPP
-#define BOOST_CHRONO_DETAIL_ADAPTIVE_STRING__HPP
+#ifndef BOOST_CHRONO_DETAIL_ADAPTIVE_STRING_HPP
+#define BOOST_CHRONO_DETAIL_ADAPTIVE_STRING_HPP
 
 #include <string>
 

Modified: sandbox/chrono/boost/chrono/detail/default_out.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/detail/default_out.hpp (original)
+++ sandbox/chrono/boost/chrono/detail/default_out.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -7,8 +7,8 @@
 
 // See http://www.boost.org/libs/system for documentation.
 
-#ifndef BOOST_CHRONO_DETAIL_DEFAULT_OUT__HPP
-#define BOOST_CHRONO_DETAIL_DEFAULT_OUT__HPP
+#ifndef BOOST_CHRONO_DETAIL_DEFAULT_OUT_HPP
+#define BOOST_CHRONO_DETAIL_DEFAULT_OUT_HPP
 
 #include <boost/chrono/config.hpp>
 #include <iostream>

Modified: sandbox/chrono/boost/chrono/detail/static_assert.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/detail/static_assert.hpp (original)
+++ sandbox/chrono/boost/chrono/detail/static_assert.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -6,8 +6,8 @@
 // See http://www.boost.org/LICENSE_1_0.txt
 
 
-#ifndef BOOST_CHRONO_DETAIL_STATIC_ASSERT__HPP
-#define BOOST_CHRONO_DETAIL_STATIC_ASSERT__HPP
+#ifndef BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP
+#define BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP
 
 #include <boost/chrono/config.hpp>
 
@@ -22,9 +22,9 @@
 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) \
     BOOST_MPL_ASSERT_MSG(boost::mpl::bool_< (CND) >::type::value, MSG, TYPES)
 #elif defined(BOOST_CHRONO_USES_ARRAY_ASSERT)
-#define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) static char BOOST_JOIN(__boost_chrono_test_,__LINE__)[CND];
+#define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES) static char BOOST_JOIN(boost_chrono_test_,__LINE__)[CND];
 #else
 #define BOOST_CHRONO_STATIC_ASSERT(CND, MSG, TYPES)
 #endif
 
-#endif // BOOST_CHRONO_DETAIL_STATIC_ASSERT__HPP
+#endif // BOOST_CHRONO_DETAIL_STATIC_ASSERT_HPP

Modified: sandbox/chrono/boost/chrono/stopclock_accumulator.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/stopclock_accumulator.hpp (original)
+++ sandbox/chrono/boost/chrono/stopclock_accumulator.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -7,8 +7,8 @@
 
 // See http://www.boost.org/libs/system for documentation.
 
-#ifndef BOOST_CHRONO_STOPCLOCK_ACCUMULATOR__HPP
-#define BOOST_CHRONO_STOPCLOCK_ACCUMULATOR__HPP
+#ifndef BOOST_CHRONO_STOPCLOCK_ACCUMULATOR_HPP
+#define BOOST_CHRONO_STOPCLOCK_ACCUMULATOR_HPP
 
 #include <boost/chrono/config.hpp>
 #include <boost/chrono/detail/static_assert.hpp>

Modified: sandbox/chrono/boost/chrono/stopwatches.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/stopwatches.hpp (original)
+++ sandbox/chrono/boost/chrono/stopwatches.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -10,8 +10,8 @@
 //
 //////////////////////////////////////////////////////////////////////////////
 
-#ifndef BOOST_CHRONO_STOPWATCHES__HPP
-#define BOOST_CHRONO_STOPWATCHES__HPP
+#ifndef BOOST_CHRONO_STOPWATCHES_HPP
+#define BOOST_CHRONO_STOPWATCHES_HPP
 
 //-----------------------------------------------------------------------------
 #include <boost/chrono/t24_hours.hpp>
@@ -29,4 +29,4 @@
 #include <boost/chrono/time_formatter.hpp>
 //-----------------------------------------------------------------------------
 
-#endif // BOOST_CHRONO_STOPWATCHES__HPP
+#endif // BOOST_CHRONO_STOPWATCHES_HPP

Modified: sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp (original)
+++ sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -11,8 +11,8 @@
 //
 //////////////////////////////////////////////////////////////////////////////
 
-#ifndef BOOST_CHRONO_TYPEOF_CHRONO__HPP
-#define BOOST_CHRONO_TYPEOF_CHRONO__HPP
+#ifndef BOOST_CHRONO_TYPEOF_CHRONO_HPP
+#define BOOST_CHRONO_TYPEOF_CHRONO_HPP
 
 #include <boost/chrono/chrono.hpp>
 #define BOOST_TYPEOF_SILENT

Modified: sandbox/chrono/boost/chrono/typeof/boost/ratio.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/typeof/boost/ratio.hpp (original)
+++ sandbox/chrono/boost/chrono/typeof/boost/ratio.hpp 2010-06-27 05:52:51 EDT (Sun, 27 Jun 2010)
@@ -11,8 +11,8 @@
 //
 //////////////////////////////////////////////////////////////////////////////
 
-#ifndef BOOST_CHRONO_TYPEOF_RATIO__HPP
-#define BOOST_CHRONO_TYPEOF_RATIO__HPP
+#ifndef BOOST_CHRONO_TYPEOF_RATIO_HPP
+#define BOOST_CHRONO_TYPEOF_RATIO_HPP
 
 #include <boost/ratio.hpp>
 #define BOOST_TYPEOF_SILENT


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