Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72217 - in branches/release: boost/config boost/config/compiler boost/config/stdlib libs/config libs/config/doc libs/config/doc/html libs/config/doc/html/boost_config libs/config/test libs/config/test/all
From: john_at_[hidden]
Date: 2011-05-27 12:56:06


Author: johnmaddock
Date: 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
New Revision: 72217
URL: http://svn.boost.org/trac/boost/changeset/72217

Log:
Merge changes from Trunk.
Adds new macros BOOST_NO_NOEXCEPT and BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX.
Fixes #4867.
Fixes #5571.
Added:
   branches/release/libs/config/test/boost_no_noexcept.ipp
      - copied unchanged from r72214, /trunk/libs/config/test/boost_no_noexcept.ipp
   branches/release/libs/config/test/boost_no_unified_init.ipp
      - copied unchanged from r72214, /trunk/libs/config/test/boost_no_unified_init.ipp
   branches/release/libs/config/test/no_noexcept_fail.cpp
      - copied unchanged from r72214, /trunk/libs/config/test/no_noexcept_fail.cpp
   branches/release/libs/config/test/no_noexcept_pass.cpp
      - copied unchanged from r72214, /trunk/libs/config/test/no_noexcept_pass.cpp
   branches/release/libs/config/test/no_unified_init_fail.cpp
      - copied unchanged from r72214, /trunk/libs/config/test/no_unified_init_fail.cpp
   branches/release/libs/config/test/no_unified_init_pass.cpp
      - copied unchanged from r72214, /trunk/libs/config/test/no_unified_init_pass.cpp
Properties modified:
   branches/release/boost/config/ (props changed)
   branches/release/boost/config/compiler/visualc.hpp (contents, props changed)
   branches/release/libs/config/ (props changed)
Text files modified:
   branches/release/boost/config/compiler/borland.hpp | 3 +++
   branches/release/boost/config/compiler/clang.hpp | 2 ++
   branches/release/boost/config/compiler/codegear.hpp | 2 ++
   branches/release/boost/config/compiler/common_edg.hpp | 2 ++
   branches/release/boost/config/compiler/digitalmars.hpp | 3 +++
   branches/release/boost/config/compiler/gcc.hpp | 2 ++
   branches/release/boost/config/compiler/gcc_xml.hpp | 2 ++
   branches/release/boost/config/compiler/hp_acc.hpp | 1 +
   branches/release/boost/config/compiler/metrowerks.hpp | 2 ++
   branches/release/boost/config/compiler/mpw.hpp | 2 ++
   branches/release/boost/config/compiler/pathscale.hpp | 2 ++
   branches/release/boost/config/compiler/pgi.hpp | 2 ++
   branches/release/boost/config/compiler/sunpro_cc.hpp | 2 ++
   branches/release/boost/config/compiler/vacpp.hpp | 2 ++
   branches/release/boost/config/compiler/visualc.hpp | 2 ++
   branches/release/boost/config/stdlib/dinkumware.hpp | 2 +-
   branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html | 25 +++++++++++++++++++++++++
   branches/release/libs/config/doc/html/index.html | 4 ++--
   branches/release/libs/config/doc/macro_reference.qbk | 7 ++++++-
   branches/release/libs/config/test/all/Jamfile.v2 | 8 +++++++-
   branches/release/libs/config/test/boost_no_defaulted_functions.ipp | 2 +-
   branches/release/libs/config/test/boost_no_deleted_functions.ipp | 2 +-
   branches/release/libs/config/test/boost_no_explicit_cvt_ops.ipp | 2 +-
   branches/release/libs/config/test/boost_no_lambdas.ipp | 2 +-
   branches/release/libs/config/test/config_info.cpp | 4 ++++
   branches/release/libs/config/test/config_test.cpp | 22 +++++++++++++++++++++-
   26 files changed, 101 insertions(+), 10 deletions(-)

Modified: branches/release/boost/config/compiler/borland.hpp
==============================================================================
--- branches/release/boost/config/compiler/borland.hpp (original)
+++ branches/release/boost/config/compiler/borland.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -185,6 +185,8 @@
 #define BOOST_NO_TEMPLATE_ALIASES
 #define BOOST_NO_UNICODE_LITERALS // UTF-8 still not supported
 #define BOOST_NO_VARIADIC_TEMPLATES
+#define BOOST_NO_NOEXCEPT
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 #if __BORLANDC__ >= 0x590
 # define BOOST_HAS_TR1_HASH
@@ -279,3 +281,4 @@
 
 
 
+

Modified: branches/release/boost/config/compiler/clang.hpp
==============================================================================
--- branches/release/boost/config/compiler/clang.hpp (original)
+++ branches/release/boost/config/compiler/clang.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -49,8 +49,10 @@
 
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 #if !__has_feature(cxx_rvalue_references)
 # define BOOST_NO_RVALUE_REFERENCES

Modified: branches/release/boost/config/compiler/codegear.hpp
==============================================================================
--- branches/release/boost/config/compiler/codegear.hpp (original)
+++ branches/release/boost/config/compiler/codegear.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -100,6 +100,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -107,6 +108,7 @@
 #define BOOST_NO_TEMPLATE_ALIASES
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 //
 // TR1 macros:

Modified: branches/release/boost/config/compiler/common_edg.hpp
==============================================================================
--- branches/release/boost/config/compiler/common_edg.hpp (original)
+++ branches/release/boost/config/compiler/common_edg.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -81,6 +81,7 @@
 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -90,6 +91,7 @@
 #define BOOST_NO_TEMPLATE_ALIASES
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 #ifdef c_plusplus
 // EDG has "long long" in non-strict mode

Modified: branches/release/boost/config/compiler/digitalmars.hpp
==============================================================================
--- branches/release/boost/config/compiler/digitalmars.hpp (original)
+++ branches/release/boost/config/compiler/digitalmars.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -72,6 +72,7 @@
 #define BOOST_NO_EXTERN_TEMPLATE
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -81,6 +82,8 @@
 #define BOOST_NO_TEMPLATE_ALIASES
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
+
 #if (__DMC__ < 0x812)
 #define BOOST_NO_VARIADIC_MACROS
 #endif

Modified: branches/release/boost/config/compiler/gcc.hpp
==============================================================================
--- branches/release/boost/config/compiler/gcc.hpp (original)
+++ branches/release/boost/config/compiler/gcc.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -212,7 +212,9 @@
 //
 #if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) || !defined(__GXX_EXPERIMENTAL_CXX0X__)
 #define BOOST_NO_CONSTEXPR
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 #endif
 
 #ifndef BOOST_COMPILER

Modified: branches/release/boost/config/compiler/gcc_xml.hpp
==============================================================================
--- branches/release/boost/config/compiler/gcc_xml.hpp (original)
+++ branches/release/boost/config/compiler/gcc_xml.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -50,6 +50,8 @@
 # define BOOST_NO_LAMBDAS
 # define BOOST_NO_RAW_LITERALS
 # define BOOST_NO_UNICODE_LITERALS
+# define BOOST_NO_NOEXCEPT
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 #define BOOST_COMPILER "GCC-XML C++ version " __GCCXML__
 

Modified: branches/release/boost/config/compiler/hp_acc.hpp
==============================================================================
--- branches/release/boost/config/compiler/hp_acc.hpp (original)
+++ branches/release/boost/config/compiler/hp_acc.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -105,6 +105,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES

Modified: branches/release/boost/config/compiler/metrowerks.hpp
==============================================================================
--- branches/release/boost/config/compiler/metrowerks.hpp (original)
+++ branches/release/boost/config/compiler/metrowerks.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -105,6 +105,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_SCOPED_ENUMS
@@ -114,6 +115,7 @@
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
 #define BOOST_NO_VARIADIC_MACROS
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 #define BOOST_COMPILER "Metrowerks CodeWarrior C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
 

Modified: branches/release/boost/config/compiler/mpw.hpp
==============================================================================
--- branches/release/boost/config/compiler/mpw.hpp (original)
+++ branches/release/boost/config/compiler/mpw.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -53,6 +53,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -63,6 +64,7 @@
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
 #define BOOST_NO_VARIADIC_MACROS
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 //
 // versions check:

Modified: branches/release/boost/config/compiler/pathscale.hpp
==============================================================================
--- branches/release/boost/config/compiler/pathscale.hpp (original)
+++ branches/release/boost/config/compiler/pathscale.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -43,6 +43,7 @@
 # define BOOST_NO_RAW_LITERALS
 # define BOOST_NO_NULLPTR
 # define BOOST_NO_NUMERIC_LIMITS_LOWEST
+# define BOOST_NO_NOEXCEPT
 # define BOOST_NO_LAMBDAS
 # define BOOST_NO_INITIALIZER_LISTS
 # define BOOST_NO_MS_INT64_NUMERIC_LIMITS
@@ -57,6 +58,7 @@
 # define BOOST_NO_CHAR16_T
 # define BOOST_NO_AUTO_MULTIDECLARATIONS
 # define BOOST_NO_AUTO_DECLARATIONS
+# define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 # define BOOST_NO_0X_HDR_UNORDERED_SET
 # define BOOST_NO_0X_HDR_UNORDERED_MAP
 # define BOOST_NO_0X_HDR_TYPEINDEX

Modified: branches/release/boost/config/compiler/pgi.hpp
==============================================================================
--- branches/release/boost/config/compiler/pgi.hpp (original)
+++ branches/release/boost/config/compiler/pgi.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -60,6 +60,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -70,6 +71,7 @@
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
 #define BOOST_NO_VARIADIC_MACROS
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 //
 // version check:

Modified: branches/release/boost/config/compiler/sunpro_cc.hpp
==============================================================================
--- branches/release/boost/config/compiler/sunpro_cc.hpp (original)
+++ branches/release/boost/config/compiler/sunpro_cc.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -112,6 +112,7 @@
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
@@ -122,6 +123,7 @@
 #define BOOST_NO_UNICODE_LITERALS
 #define BOOST_NO_VARIADIC_TEMPLATES
 #define BOOST_NO_VARIADIC_MACROS
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 
 //
 // Version

Modified: branches/release/boost/config/compiler/vacpp.hpp
==============================================================================
--- branches/release/boost/config/compiler/vacpp.hpp (original)
+++ branches/release/boost/config/compiler/vacpp.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -96,11 +96,13 @@
 #endif
 #define BOOST_NO_INITIALIZER_LISTS
 #define BOOST_NO_LAMBDAS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_NULLPTR
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_RVALUE_REFERENCES
 #define BOOST_NO_SCOPED_ENUMS
 #define BOOST_NO_SFINAE_EXPR
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 #if ! __IBMCPP_STATIC_ASSERT
 # define BOOST_NO_STATIC_ASSERT
 #endif

Modified: branches/release/boost/config/compiler/visualc.hpp
==============================================================================
--- branches/release/boost/config/compiler/visualc.hpp (original)
+++ branches/release/boost/config/compiler/visualc.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -199,6 +199,7 @@
 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
 #define BOOST_NO_INITIALIZER_LISTS
+#define BOOST_NO_NOEXCEPT
 #define BOOST_NO_RAW_LITERALS
 #define BOOST_NO_SCOPED_ENUMS
 #define BOOST_NO_TEMPLATE_ALIASES
@@ -206,6 +207,7 @@
 #define BOOST_NO_VARIADIC_TEMPLATES
 #define BOOST_NO_SFINAE_EXPR
 #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
+#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
 //
 // prefix and suffix headers:
 //

Modified: branches/release/boost/config/stdlib/dinkumware.hpp
==============================================================================
--- branches/release/boost/config/stdlib/dinkumware.hpp (original)
+++ branches/release/boost/config/stdlib/dinkumware.hpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -87,7 +87,7 @@
 #endif
 
 #include <typeinfo>
-#if !_HAS_EXCEPTIONS
+#if ( (!_HAS_EXCEPTIONS && !defined(__ghs__)) || (!_HAS_NAMESPACE && defined(__ghs__)) )
 # define BOOST_NO_STD_TYPEINFO
 #endif
 

Modified: branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html
==============================================================================
--- branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html (original)
+++ branches/release/libs/config/doc/html/boost_config/boost_macro_reference.html 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -2697,6 +2697,18 @@
 <tr>
 <td>
                 <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_NOEXCEPT</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The compiler does not support <code class="computeroutput"><span class="identifier">noexcept</span></code>.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
                   <code class="computeroutput"><span class="identifier">BOOST_NO_NULLPTR</span></code>
                 </p>
               </td>
@@ -2795,6 +2807,19 @@
 <tr>
 <td>
                 <p>
+ <code class="computeroutput"><span class="identifier">BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX</span></code>
+ </p>
+ </td>
+<td>
+ <p>
+ The compiler does not support the <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Uniform_initialization" target="_top">C++11
+ Unified Initialization Syntax</a>.
+ </p>
+ </td>
+</tr>
+<tr>
+<td>
+ <p>
                   <code class="computeroutput"><span class="identifier">BOOST_NO_VARIADIC_TEMPLATES</span></code>
                 </p>
               </td>

Modified: branches/release/libs/config/doc/html/index.html
==============================================================================
--- branches/release/libs/config/doc/html/index.html (original)
+++ branches/release/libs/config/doc/html/index.html 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -28,7 +28,7 @@
 </h3></div></div></div>
 <div><p class="copyright">Copyright &#169; 2001 -2007 Beman Dawes, Vesa Karvonen, John Maddock</p></div>
 <div><div class="legalnotice">
-<a name="id1006373"></a><p>
+<a name="id996438"></a><p>
         Distributed under the Boost Software License, Version 1.0. (See accompanying
         file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
       </p>
@@ -946,7 +946,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: April 06, 2011 at 10:49:30 GMT</small></p></td>
+<td align="left"><p><small>Last revised: May 09, 2011 at 11:33:33 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: branches/release/libs/config/doc/macro_reference.qbk
==============================================================================
--- branches/release/libs/config/doc/macro_reference.qbk (original)
+++ branches/release/libs/config/doc/macro_reference.qbk 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -597,6 +597,8 @@
 ]]
 [[`BOOST_NO_LONG_LONG`][The compiler does not support `long long`.
 ]]
+[[`BOOST_NO_NOEXCEPT`][The compiler does not support `noexcept`.
+]]
 [[`BOOST_NO_NULLPTR`][The compiler does not support 'nullptr'.
 ]]
 [[`BOOST_NO_RAW_LITERALS`][The compiler does not support
@@ -618,7 +620,10 @@
 ]]
 [[`BOOST_NO_UNICODE_LITERALS`][The compiler does not support
 Unicode (`u8`, `u`, `U`) literals.
-]]
+]]
+[[`BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX`][The compiler does not support
+the [@http://en.wikipedia.org/wiki/C%2B%2B0x#Uniform_initialization C++11 Unified Initialization Syntax].
+]]
 [[`BOOST_NO_VARIADIC_TEMPLATES`][The compiler does not support
 variadic templates.
 ]]

Modified: branches/release/libs/config/test/all/Jamfile.v2
==============================================================================
--- branches/release/libs/config/test/all/Jamfile.v2 (original)
+++ branches/release/libs/config/test/all/Jamfile.v2 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -1,7 +1,7 @@
 #
 # Regression test Jamfile for boost configuration setup.
 # *** DO NOT EDIT THIS FILE BY HAND ***
-# This file was automatically generated on Tue Mar 15 12:25:21 2011
+# This file was automatically generated on Mon May 09 12:11:18 2011
 # by libs/config/tools/generate.cpp
 # Copyright John Maddock.
 # Use, modification and distribution are subject to the
@@ -379,6 +379,9 @@
 test-suite "BOOST_NO_NESTED_FRIENDSHIP" :
 [ run ../no_nested_friendship_pass.cpp ]
 [ compile-fail ../no_nested_friendship_fail.cpp ] ;
+test-suite "BOOST_NO_NOEXCEPT" :
+[ run ../no_noexcept_pass.cpp ]
+[ compile-fail ../no_noexcept_fail.cpp ] ;
 test-suite "BOOST_NO_NULLPTR" :
 [ run ../no_nullptr_pass.cpp ]
 [ compile-fail ../no_nullptr_fail.cpp ] ;
@@ -490,6 +493,9 @@
 test-suite "BOOST_NO_UNICODE_LITERALS" :
 [ run ../no_unicode_literals_pass.cpp ]
 [ compile-fail ../no_unicode_literals_fail.cpp ] ;
+test-suite "BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX" :
+[ run ../no_unified_init_pass.cpp ]
+[ compile-fail ../no_unified_init_fail.cpp ] ;
 test-suite "BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL" :
 [ run ../no_using_breaks_adl_pass.cpp ]
 [ compile-fail ../no_using_breaks_adl_fail.cpp ] ;

Modified: branches/release/libs/config/test/boost_no_defaulted_functions.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_defaulted_functions.ipp (original)
+++ branches/release/libs/config/test/boost_no_defaulted_functions.ipp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -10,7 +10,7 @@
 // TITLE: C++0x defaulted functions unavailable
 // DESCRIPTION: The compiler does not support C++0x defaulted functions
 
-#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
+#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__) && !defined(BOOST_INTEL_STDCXX0X)
 # error Defaulted functions aren't really supported in non-C++0x mode
 #endif
 

Modified: branches/release/libs/config/test/boost_no_deleted_functions.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_deleted_functions.ipp (original)
+++ branches/release/libs/config/test/boost_no_deleted_functions.ipp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -10,7 +10,7 @@
 // TITLE: C++0x =delete functions unavailable
 // DESCRIPTION: The compiler does not support C++0x =delete functions
 
-#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
+#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__) && !defined(BOOST_INTEL_STDCXX0X)
 # error Deleted functions aren't really supported in non-C++0x mode
 #endif
 

Modified: branches/release/libs/config/test/boost_no_explicit_cvt_ops.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_explicit_cvt_ops.ipp (original)
+++ branches/release/libs/config/test/boost_no_explicit_cvt_ops.ipp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -10,7 +10,7 @@
 // TITLE: C++0x explicit conversion operators unavailable
 // DESCRIPTION: The compiler does not support C++0x explicit conversion operators
 
-#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
+#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__) && !defined(BOOST_INTEL_STDCXX0X)
 # error This feature isn't really available in non-C++0x mode
 #endif
 

Modified: branches/release/libs/config/test/boost_no_lambdas.ipp
==============================================================================
--- branches/release/libs/config/test/boost_no_lambdas.ipp (original)
+++ branches/release/libs/config/test/boost_no_lambdas.ipp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -10,7 +10,7 @@
 // TITLE: C++0x lambda feature unavailable
 // DESCRIPTION: The compiler does not support the C++0x lambda feature
 
-#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__)
+#if defined(__GNUC__) && !defined(__GXX_EXPERIMENTAL_CXX0X__) && !defined(BOOST_INTEL_STDCXX0X)
 # error This feature isn't really available in non-C++0x mode
 #endif
 

Modified: branches/release/libs/config/test/config_info.cpp
==============================================================================
--- branches/release/libs/config/test/config_info.cpp (original)
+++ branches/release/libs/config/test/config_info.cpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -1027,6 +1027,7 @@
    PRINT_MACRO(BOOST_NO_MEMBER_TEMPLATE_KEYWORD);
    PRINT_MACRO(BOOST_NO_MS_INT64_NUMERIC_LIMITS);
    PRINT_MACRO(BOOST_NO_NESTED_FRIENDSHIP);
+ PRINT_MACRO(BOOST_NO_NOEXCEPT);
    PRINT_MACRO(BOOST_NO_NULLPTR);
    PRINT_MACRO(BOOST_NO_NUMERIC_LIMITS_LOWEST);
    PRINT_MACRO(BOOST_NO_OPERATORS_IN_NAMESPACE);
@@ -1066,6 +1067,7 @@
    PRINT_MACRO(BOOST_NO_TYPEID);
    PRINT_MACRO(BOOST_NO_TYPENAME_WITH_CTOR);
    PRINT_MACRO(BOOST_NO_UNICODE_LITERALS);
+ PRINT_MACRO(BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX);
    PRINT_MACRO(BOOST_NO_UNREACHABLE_RETURN_DETECTION);
    PRINT_MACRO(BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE);
    PRINT_MACRO(BOOST_NO_USING_TEMPLATE);
@@ -1075,6 +1077,8 @@
 
 
 
+
+
    // END GENERATED BLOCK
 
    PRINT_MACRO(BOOST_INTEL);

Modified: branches/release/libs/config/test/config_test.cpp
==============================================================================
--- branches/release/libs/config/test/config_test.cpp (original)
+++ branches/release/libs/config/test/config_test.cpp 2011-05-27 12:56:00 EDT (Fri, 27 May 2011)
@@ -1,4 +1,4 @@
-// This file was automatically generated on Tue Mar 15 12:25:21 2011
+// This file was automatically generated on Mon May 09 12:11:18 2011
 // by libs/config/tools/generate.cpp
 // Copyright John Maddock 2002-4.
 // Use, modification and distribution are subject to the
@@ -367,6 +367,11 @@
 #else
 namespace boost_no_nested_friendship = empty_boost;
 #endif
+#ifndef BOOST_NO_NOEXCEPT
+#include "boost_no_noexcept.ipp"
+#else
+namespace boost_no_noexcept = empty_boost;
+#endif
 #ifndef BOOST_NO_NULLPTR
 #include "boost_no_nullptr.ipp"
 #else
@@ -552,6 +557,11 @@
 #else
 namespace boost_no_unicode_literals = empty_boost;
 #endif
+#ifndef BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
+#include "boost_no_unified_init.ipp"
+#else
+namespace boost_no_unified_initialization_syntax = empty_boost;
+#endif
 #ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
 #include "boost_no_using_breaks_adl.ipp"
 #else
@@ -1436,6 +1446,11 @@
       std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
+ if(0 != boost_no_noexcept::test())
+ {
+ std::cerr << "Failed test for BOOST_NO_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
    if(0 != boost_no_nullptr::test())
    {
       std::cerr << "Failed test for BOOST_NO_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl;
@@ -1621,6 +1636,11 @@
       std::cerr << "Failed test for BOOST_NO_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl;
       ++error_count;
    }
+ if(0 != boost_no_unified_initialization_syntax::test())
+ {
+ std::cerr << "Failed test for BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl;
+ ++error_count;
+ }
    if(0 != boost_function_scope_using_declaration_breaks_adl::test())
    {
       std::cerr << "Failed test for BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL at: " << __FILE__ << ":" << __LINE__ << std::endl;


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