|
1 | 1 | // (C) Copyright John Maddock 2000. |
2 | | -// Use, modification and distribution are subject to the |
3 | | -// Boost Software License, Version 1.0. (See accompanying file |
| 2 | +// Use, modification and distribution are subject to the |
| 3 | +// Boost Software License, Version 1.0. (See accompanying file |
4 | 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
5 | 5 |
|
6 | 6 | // See http://www.boost.org/libs/static_assert for documentation. |
@@ -121,13 +121,13 @@ template<std::size_t x> struct static_assert_test{}; |
121 | 121 | sizeof(::boost::STATIC_ASSERTION_FAILURE< BOOST_STATIC_ASSERT_BOOL_CAST (__VA_ARGS__) >)>\ |
122 | 122 | BOOST_JOIN(boost_static_assert_typedef_, __COUNTER__) |
123 | 123 | #elif (defined(BOOST_INTEL_CXX_VERSION) || defined(BOOST_SA_GCC_WORKAROUND)) && defined(BOOST_NO_CXX11_VARIADIC_MACROS) |
124 | | -// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error |
| 124 | +// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error |
125 | 125 | // instead of warning in case of failure |
126 | 126 | # define BOOST_STATIC_ASSERT( B ) \ |
127 | 127 | typedef char BOOST_JOIN(boost_static_assert_typedef_, __LINE__) \ |
128 | 128 | [ ::boost::STATIC_ASSERTION_FAILURE< BOOST_STATIC_ASSERT_BOOL_CAST( B ) >::value ] |
129 | 129 | #elif (defined(BOOST_INTEL_CXX_VERSION) || defined(BOOST_SA_GCC_WORKAROUND)) && !defined(BOOST_NO_CXX11_VARIADIC_MACROS) |
130 | | -// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error |
| 130 | +// agurt 15/sep/02: a special care is needed to force Intel C++ issue an error |
131 | 131 | // instead of warning in case of failure |
132 | 132 | # define BOOST_STATIC_ASSERT(...) \ |
133 | 133 | typedef char BOOST_JOIN(boost_static_assert_typedef_, __LINE__) \ |
@@ -177,5 +177,3 @@ template<std::size_t x> struct static_assert_test{}; |
177 | 177 | #endif // defined(BOOST_NO_CXX11_STATIC_ASSERT) |
178 | 178 |
|
179 | 179 | #endif // BOOST_STATIC_ASSERT_HPP |
180 | | - |
181 | | - |
0 commit comments