From 16a4fc7f6afb14dfb7c6519ba46933989583e963 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 24 Sep 2014 19:27:40 +0100 Subject: [PATCH 01/20] In preparation for GCC-5 and/or the deprecation of __GXX_EXPERIMENTAL_CXX0X__ refactor GCC configuration. --- include/boost/config/compiler/gcc.hpp | 40 +++++++++++++++------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index 039d24a4..f217872f 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -16,8 +16,13 @@ // // Define BOOST_GCC so we know this is "real" GCC and not some pretender: // +#define BOOST_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) #if !defined(__CUDACC__) -#define BOOST_GCC (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) +#define BOOST_GCC BOOST_GCC_VERSION +#endif + +#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L) +# define BOOST_GCC_CXX11 #endif #if __GNUC__ == 3 @@ -42,11 +47,11 @@ #endif // GCC prior to 3.4 had #pragma once too but it didn't work well with filesystem links -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +#if BOOST_GCC_VERSION >= 30400 #define BOOST_HAS_PRAGMA_ONCE #endif -#if __GNUC__ < 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ < 4 ) +#if BOOST_GCC_VERSION < 40400 // Previous versions of GCC did not completely implement value-initialization: // GCC Bug 30111, "Value-initialization of POD base class doesn't initialize // members", reported by Jonathan Wakely in 2006, @@ -114,7 +119,7 @@ // // RTTI and typeinfo detection is possible post gcc-4.3: // -#if __GNUC__ * 100 + __GNUC_MINOR__ >= 403 +#if BOOST_GCC_VERSION > 40300 # ifndef __GXX_RTTI # ifndef BOOST_NO_TYPEID # define BOOST_NO_TYPEID @@ -141,7 +146,7 @@ // C++0x features in 4.3.n and later // -#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 2)) && defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION >= 40300) && defined(BOOST_GCC_CXX11) // C++0x features are only enabled when -std=c++0x or -std=gnu++0x are // passed on the command line, which in turn defines // __GXX_EXPERIMENTAL_CXX0X__. @@ -158,7 +163,7 @@ // C++0x features in 4.4.n and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40400) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_AUTO_DECLARATIONS # define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS # define BOOST_NO_CXX11_CHAR16_T @@ -171,18 +176,18 @@ # define BOOST_NO_CXX11_VARIADIC_TEMPLATES #endif -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) +#if BOOST_GCC_VERSION < 40500 # define BOOST_NO_SFINAE_EXPR #endif // GCC 4.5 forbids declaration of defaulted functions in private or protected sections -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ == 5) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ == 5) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS #endif // C++0x features in 4.5.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40500) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS # define BOOST_NO_CXX11_LAMBDAS # define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS @@ -192,7 +197,7 @@ // C++0x features in 4.5.1 and later // -#if (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__ < 40501) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40501) || !defined(BOOST_GCC_CXX11) // scoped enums have a serious bug in 4.4.0, so define BOOST_NO_CXX11_SCOPED_ENUMS before 4.5.1 // See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38064 # define BOOST_NO_CXX11_SCOPED_ENUMS @@ -200,7 +205,7 @@ // C++0x features in 4.6.n and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40600) || !defined(BOOST_GCC_CXX11) #define BOOST_NO_CXX11_CONSTEXPR #define BOOST_NO_CXX11_NOEXCEPT #define BOOST_NO_CXX11_NULLPTR @@ -210,7 +215,7 @@ // C++0x features in 4.7.n and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40700) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_FINAL # define BOOST_NO_CXX11_TEMPLATE_ALIASES # define BOOST_NO_CXX11_USER_DEFINED_LITERALS @@ -219,13 +224,13 @@ // C++0x features in 4.8.n and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40800) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_ALIGNAS #endif // C++0x features in 4.8.1 and later // -#if (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__ < 40801) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_GCC_VERSION < 40801) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_DECLTYPE_N3276 # define BOOST_NO_CXX11_REF_QUALIFIERS #endif @@ -243,12 +248,12 @@ // versions check: // we don't know gcc prior to version 3.30: -#if (__GNUC__ < 3) || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3)) +#if (BOOST_GCC_VERSION< 30300) # error "Compiler not configured - please reconfigure" #endif // -// last known and checked version is 4.6 (Pre-release): -#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 6)) +// last known and checked version is 4.9: +#if (BOOST_GCC_VERSION > 40900) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else @@ -258,4 +263,3 @@ # endif #endif - From 04acb85f7a91825584ad16577b84d49969108b3d Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 2 Oct 2014 17:46:49 +0100 Subject: [PATCH 02/20] Update existing VC14 support with patches from https://svn.boost.org/trac/boost/ticket/10489 --- include/boost/config/auto_link.hpp | 7 ++++++- include/boost/config/compiler/visualc.hpp | 6 ++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/include/boost/config/auto_link.hpp b/include/boost/config/auto_link.hpp index 13cbad43..ae3ba1bd 100644 --- a/include/boost/config/auto_link.hpp +++ b/include/boost/config/auto_link.hpp @@ -156,11 +156,16 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // vc11: # define BOOST_LIB_TOOLSET "vc110" -# elif defined(BOOST_MSVC) +# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1900) // vc12: # define BOOST_LIB_TOOLSET "vc120" +# elif defined(BOOST_MSVC) + + // vc14: +# define BOOST_LIB_TOOLSET "vc140" + # elif defined(__BORLANDC__) // CBuilder 6: diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 42dabf0d..41bb5fe0 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -227,6 +227,8 @@ # define BOOST_COMPILER_VERSION evc11 # elif _MSC_VER < 1900 # define BOOST_COMPILER_VERSION evc12 +# elif _MSC_VER < 2000 +# define BOOST_COMPILER_VERSION evc14 # else # if defined(BOOST_ASSERT_CONFIG) # error "Unknown EVC++ compiler version - please run the configure tests and report the results" @@ -265,8 +267,8 @@ #endif // -// last known and checked version is 19.00.21901.1 (VC14 CTP2): -#if (_MSC_VER > 1800 && _MSC_FULL_VER > 190021901) +// last known and checked version is 19.00.21901.1 (VC14 CTP3): +#if (_MSC_VER > 1800 && _MSC_FULL_VER > 190022013) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else From d3c1db5436a2fb4682e15590f2d344d749579b31 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 2 Oct 2014 18:22:19 +0100 Subject: [PATCH 03/20] Apply patch from https://svn.boost.org/trac/boost/ticket/5315. Allows auto-linking code to synch up with Boost.Build with the --buildid option. --- doc/configuring_boost.qbk | 6 ++++++ doc/html/index.html | 18 +++++++++++++++++- include/boost/config/auto_link.hpp | 5 +++++ include/boost/config/user.hpp | 12 +++++++++++- test/link/test/Jamfile.v2 | 4 ++-- 5 files changed, 41 insertions(+), 4 deletions(-) diff --git a/doc/configuring_boost.qbk b/doc/configuring_boost.qbk index 0c4b8d82..ee86a9a3 100644 --- a/doc/configuring_boost.qbk +++ b/doc/configuring_boost.qbk @@ -271,6 +271,12 @@ feature off. Causes the auto-linking code to output diagnostic messages indicating the name of the library that is selected for linking. ]] +[[`BOOST_LIB_BUILDID`][ +If you built Boost using the `--buildid` option then set this macro to the same value +as you passed to bjam. For example if you built using `bjam address-model=64 --buildid=amd64` +then compile your code with `-DBOOST_LIB_BUILDID=amd64` to ensure the correct libraries +are selected at link time. +]] [[`BOOST_LIB_TOOLSET`][ Overrides the name of the toolset part of the name of library being linked to; note if defined this must be defined to a quoted string literal, for diff --git a/doc/html/index.html b/doc/html/index.html index 464e7696..4f252b54 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -680,6 +680,22 @@ + +

+ BOOST_LIB_BUILDID +

+ + +

+ If you built Boost using the --buildid option then set this + macro to the same value as you passed to bjam. For example if you + built using bjam address-model=64 --buildid=amd64 then compile your code + with -DBOOST_LIB_BUILDID=amd64 + to ensure the correct libraries are selected at link time. +

+ + +

BOOST_LIB_TOOLSET @@ -968,7 +984,7 @@ - +

Last revised: August 25, 2014 at 17:53:11 GMT

Last revised: October 02, 2014 at 17:20:14 GMT


diff --git a/include/boost/config/auto_link.hpp b/include/boost/config/auto_link.hpp index ae3ba1bd..56a16b0b 100644 --- a/include/boost/config/auto_link.hpp +++ b/include/boost/config/auto_link.hpp @@ -387,6 +387,11 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. # ifdef BOOST_LIB_DIAGNOSTIC # pragma message ("Linking to lib file: " BOOST_STRINGIZE(BOOST_LIB_NAME) ".lib") # endif +#elif defined(BOOST_LIB_BUILDID) +# pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) ".lib") +# ifdef BOOST_LIB_DIAGNOSTIC +# pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) ".lib") +# endif #else # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION ".lib") # ifdef BOOST_LIB_DIAGNOSTIC diff --git a/include/boost/config/user.hpp b/include/boost/config/user.hpp index d226a2d1..28e7476a 100644 --- a/include/boost/config/user.hpp +++ b/include/boost/config/user.hpp @@ -119,5 +119,15 @@ // that feature off. // #define BOOST_WHATEVER_NO_LIB - +// BOOST_LIB_BUILDID: Set to the same value as the value passed to Boost.Build's +// --buildid command line option. For example if you built using: +// +// bjam address-model=64 --buildid=amd64 +// +// then compile your code with: +// +// -DBOOST_LIB_BUILDID = amd64 +// +// to ensure the correct libraries are selected at link time. +// #define BOOST_LIB_BUILDID amd64 diff --git a/test/link/test/Jamfile.v2 b/test/link/test/Jamfile.v2 index 22668af2..251e5256 100644 --- a/test/link/test/Jamfile.v2 +++ b/test/link/test/Jamfile.v2 @@ -73,10 +73,10 @@ autolink-lib link_test : ../link_test.cpp explicit link_test ; run ../main.cpp link_test - : : : msvc-8.0:no msvc-9.0:no msvc-10.0:no static static single debug : link_test_ssd ; + : : : msvc-8.0:no msvc-9.0:no msvc-10.0:no msvc-11.0:no msvc-12.0:no static static single debug : link_test_ssd ; run ../main.cpp link_test - : : : msvc-8.0:no msvc-9.0:no msvc-10.0:no static static single release : link_test_ssr ; + : : : msvc-8.0:no msvc-9.0:no msvc-10.0:no msvc-11.0:no msvc-12.0:no static static single release : link_test_ssr ; run ../main.cpp link_test : : : static static multi debug : link_test_smd ; From d978d311177954b0a65bac78e113732b45170c21 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 2 Oct 2014 18:52:03 +0100 Subject: [PATCH 04/20] Only include when we absolutely have to as it's not so lightweight in C++11. See https://github.com/boostorg/config/pull/40 --- include/boost/config/select_stdlib_config.hpp | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/include/boost/config/select_stdlib_config.hpp b/include/boost/config/select_stdlib_config.hpp index 6ae860b0..e270a881 100644 --- a/include/boost/config/select_stdlib_config.hpp +++ b/include/boost/config/select_stdlib_config.hpp @@ -28,13 +28,19 @@ #else -// If our std lib was not some version of STLport, then include as it is about -// the smallest of the std lib headers that includes real C++ stuff. (Some std libs do not -// include their C++-related macros in so this additional include makes sure -// we get those definitions) -// (again do not rely on this header being included since users can short-circuit this -// header if they know whose std lib they are using.) -#include +// If our std lib was not some version of STLport, and has not otherwise +// been detected, then include as it is about +// the smallest of the std lib headers that includes real C++ stuff. +// Some std libs do not include their C++-related macros in +// so this additional include makes sure we get those definitions. +// Note: do not rely on this header being included since users can short-circuit this +// #include if they know whose std lib they are using. +#if !defined(__LIBCOMO__) && !defined(__STD_RWCOMPILER_H__) && !defined(_RWSTD_VER)\ + && !defined(_LIBCPP_VERSION) && !defined(__GLIBCPP__) && !defined(__GLIBCXX__)\ + && !defined(__STL_CONFIG_H) && !defined(__MSL_CPP__) && !defined(__IBMCPP__)\ + && !defined(MSIPL_COMPILE_H) && !defined(_YVALS) && !defined(_CPPLIB_VER) +#include +#endif #if defined(__LIBCOMO__) // Comeau STL: From 71fa89f5e1ce63847594c1e3b2b785f0da23d0e2 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 2 Oct 2014 19:00:41 +0100 Subject: [PATCH 05/20] Disable log1p and expm1 support in mingw - they often crash for reasons yet to be determined. --- include/boost/config/platform/win32.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/boost/config/platform/win32.hpp b/include/boost/config/platform/win32.hpp index 2a91519e..60a29abe 100644 --- a/include/boost/config/platform/win32.hpp +++ b/include/boost/config/platform/win32.hpp @@ -41,8 +41,10 @@ #endif #if defined(__MINGW32__) && (__GNUC__ >= 4) -# define BOOST_HAS_EXPM1 -# define BOOST_HAS_LOG1P +// Mingw has these functions but there are persistent problems +// with calls to these crashing, so disable for now: +//# define BOOST_HAS_EXPM1 +//# define BOOST_HAS_LOG1P # define BOOST_HAS_GETTIMEOFDAY #endif // From 196a4baae0e790a0ffad7fda0ea86c3e37e07e90 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 4 Oct 2014 08:32:52 +0100 Subject: [PATCH 06/20] Fix typo, see https://svn.boost.org/trac/boost/ticket/10590 --- include/boost/config/stdlib/libcpp.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/stdlib/libcpp.hpp b/include/boost/config/stdlib/libcpp.hpp index 5d60cfcf..eee2d75d 100644 --- a/include/boost/config/stdlib/libcpp.hpp +++ b/include/boost/config/stdlib/libcpp.hpp @@ -31,7 +31,7 @@ # define BOOST_NO_CXX11_ALLOCATOR #endif -#if __cpluplus < 201103 +#if __cplusplus < 201103 # define BOOST_NO_CXX11_HDR_ARRAY # define BOOST_NO_CXX11_HDR_CODECVT # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE From b36566fe04a89103b7ef5569c03e3a26eb77af36 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 5 Oct 2014 13:41:42 +0100 Subject: [PATCH 07/20] Reorganise library version detection, adds tentative fix for clang with libstdc++. See issues 10600 and 7473 --- include/boost/config/stdlib/libstdcpp3.hpp | 60 +++++++++++++++++++--- 1 file changed, 52 insertions(+), 8 deletions(-) diff --git a/include/boost/config/stdlib/libstdcpp3.hpp b/include/boost/config/stdlib/libstdcpp3.hpp index 2fd6ea7d..4e4946ea 100644 --- a/include/boost/config/stdlib/libstdcpp3.hpp +++ b/include/boost/config/stdlib/libstdcpp3.hpp @@ -91,6 +91,14 @@ # endif #endif +// +// Decide whether we have C++11 support turned on: +// +#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103) +# define BOOST_LIBSTDCXX11 +#endif +// +// Decide which version of libstdc++ we have, normally // stdlibc++ C++0x support is detected via __GNUC__, __GNUC_MINOR__, and possibly // __GNUC_PATCHLEVEL__ at the suggestion of Jonathan Wakely, one of the stdlibc++ // developers. He also commented: @@ -102,10 +110,46 @@ // // Another resource for understanding stdlibc++ features is: // http://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#manual.intro.status.standard.200x +// +// However, using the GCC version number fails when the compiler is clang since this +// only ever claims to emulate GCC-4.2, see https://svn.boost.org/trac/boost/ticket/7473 +// for a long discussion on this issue. What we can do though is use clang's __has_include +// to detect the presence of a C++11 header that was introduced with a specific GCC release. +// We still have to be careful though as many such headers were buggy and/or incomplete when +// first introduced, so we only check for headers that were fully featured from day 1, and then +// use that to infer the underlying GCC version: +// +#ifdef __clang__ + +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 40300 +#endif +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 40400 +#endif +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 40500 +#endif +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 40600 +#endif +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 40700 +#endif +// +// GCC 4.8 and 9 add working versions of and respectively. +// However, we have no test for these as the headers were present but broken +// in early GCC versions. +// +#endif + +#if !defined(BOOST_LIBSTDCXX_VERSION) +# define BOOST_LIBSTDCXX_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) +#endif // C++0x headers in GCC 4.3.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40300) || !defined(BOOST_LIBSTDCXX11) # define BOOST_NO_CXX11_HDR_ARRAY # define BOOST_NO_CXX11_HDR_TUPLE # define BOOST_NO_CXX11_HDR_UNORDERED_MAP @@ -115,7 +159,7 @@ // C++0x headers in GCC 4.4.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40400) || !defined(BOOST_LIBSTDCXX11) # define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE # define BOOST_NO_CXX11_HDR_FORWARD_LIST # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST @@ -135,7 +179,7 @@ // C++0x features in GCC 4.5.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40500) || !defined(BOOST_LIBSTDCXX11) # define BOOST_NO_CXX11_NUMERIC_LIMITS # define BOOST_NO_CXX11_HDR_FUTURE # define BOOST_NO_CXX11_HDR_RANDOM @@ -143,26 +187,26 @@ // C++0x features in GCC 4.6.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40600) || !defined(BOOST_LIBSTDCXX11) # define BOOST_NO_CXX11_HDR_TYPEINDEX # define BOOST_NO_CXX11_ADDRESSOF #endif // C++0x features in GCC 4.7.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 7) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40700) || !defined(BOOST_LIBSTDCXX11) // Note that although existed prior to 4.7, "steady_clock" is spelled "monotonic_clock" // so 4.7.0 is the first truely conforming one. # define BOOST_NO_CXX11_HDR_CHRONO # define BOOST_NO_CXX11_ALLOCATOR #endif -// C++0x features in GCC 4.7.0 and later +// C++0x features in GCC 4.8.0 and later // -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40800) || !defined(BOOST_LIBSTDCXX11) // Note that although existed prior to gcc 4.8 it was largely unimplemented for many types: # define BOOST_NO_CXX11_HDR_ATOMIC #endif -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 9) || !defined(__GXX_EXPERIMENTAL_CXX0X__) +#if (BOOST_LIBSTDCXX_VERSION < 40900) || !defined(BOOST_LIBSTDCXX11) // Although is present and compilable against, the actual implementation is not functional // even for the simplest patterns such as "\d" or "[0-9]". This is the case at least in gcc up to 4.8, inclusively. # define BOOST_NO_CXX11_HDR_REGEX From 32237deddc7e5e06419e2bf310a9746b60914a21 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 8 Oct 2014 13:37:18 +0100 Subject: [PATCH 08/20] Reorganize clang config to avoid macro redefinitions and fix GCC-4.8, 4.9, and 5.0 detection. --- include/boost/config/stdlib/libstdcpp3.hpp | 28 ++++++++++++---------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/include/boost/config/stdlib/libstdcpp3.hpp b/include/boost/config/stdlib/libstdcpp3.hpp index 4e4946ea..5bea8d35 100644 --- a/include/boost/config/stdlib/libstdcpp3.hpp +++ b/include/boost/config/stdlib/libstdcpp3.hpp @@ -121,20 +121,22 @@ // #ifdef __clang__ -#if __has_include() -# define BOOST_LIBSTDCXX_VERSION 40300 -#endif -#if __has_include() -# define BOOST_LIBSTDCXX_VERSION 40400 -#endif -#if __has_include() -# define BOOST_LIBSTDCXX_VERSION 40500 -#endif -#if __has_include() -# define BOOST_LIBSTDCXX_VERSION 40600 -#endif -#if __has_include() +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 50000 +#elif __has_include() +# define BOOST_LIBSTDCXX_VERSION 40900 +#elif __has_include() +# define BOOST_LIBSTDCXX_VERSION 40800 +#elif __has_include(chrono) # define BOOST_LIBSTDCXX_VERSION 40700 +#elif __has_include(typeindex) +# define BOOST_LIBSTDCXX_VERSION 40600 +#elif __has_include(future) +# define BOOST_LIBSTDCXX_VERSION 40500 +#elif __has_include(ratio) +# define BOOST_LIBSTDCXX_VERSION 40400 +#elif __has_include(array) +# define BOOST_LIBSTDCXX_VERSION 40300 #endif // // GCC 4.8 and 9 add working versions of and respectively. From a8868e82e0987d0a120413c347a60bd3d6ced966 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 8 Oct 2014 18:58:15 +0100 Subject: [PATCH 09/20] Enable for gcc-4.8 and later. Disable thread support headers depending on values of internal libstdc++ macros. --- include/boost/config/stdlib/libstdcpp3.hpp | 25 ++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/include/boost/config/stdlib/libstdcpp3.hpp b/include/boost/config/stdlib/libstdcpp3.hpp index 5bea8d35..6827cafa 100644 --- a/include/boost/config/stdlib/libstdcpp3.hpp +++ b/include/boost/config/stdlib/libstdcpp3.hpp @@ -174,11 +174,6 @@ # define BOOST_HAS_TR1_COMPLEX_OVERLOADS #endif -#if (!defined(_GLIBCXX_HAS_GTHREADS) || !defined(_GLIBCXX_USE_C99_STDINT_TR1)) && (!defined(BOOST_NO_CXX11_HDR_CONDITION_VARIABLE) || !defined(BOOST_NO_CXX11_HDR_MUTEX)) -# define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE -# define BOOST_NO_CXX11_HDR_MUTEX -#endif - // C++0x features in GCC 4.5.0 and later // #if (BOOST_LIBSTDCXX_VERSION < 40500) || !defined(BOOST_LIBSTDCXX11) @@ -207,6 +202,7 @@ #if (BOOST_LIBSTDCXX_VERSION < 40800) || !defined(BOOST_LIBSTDCXX11) // Note that although existed prior to gcc 4.8 it was largely unimplemented for many types: # define BOOST_NO_CXX11_HDR_ATOMIC +# define BOOST_NO_CXX11_HDR_THREAD #endif #if (BOOST_LIBSTDCXX_VERSION < 40900) || !defined(BOOST_LIBSTDCXX11) // Although is present and compilable against, the actual implementation is not functional @@ -215,10 +211,27 @@ #endif // C++0x headers not yet (fully!) implemented // -# define BOOST_NO_CXX11_HDR_THREAD # define BOOST_NO_CXX11_HDR_TYPE_TRAITS # define BOOST_NO_CXX11_HDR_CODECVT # define BOOST_NO_CXX11_ATOMIC_SMART_PTR # define BOOST_NO_CXX11_STD_ALIGN +#if (!defined(_GLIBCXX_HAS_GTHREADS) || !defined(_GLIBCXX_USE_C99_STDINT_TR1)) + // Headers not always available: +# ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE +# define BOOST_NO_CXX11_HDR_CONDITION_VARIABLE +# endif +# ifndef BOOST_NO_CXX11_HDR_MUTEX +# define BOOST_NO_CXX11_HDR_MUTEX +# endif +# ifndef BOOST_NO_CXX11_HDR_THREAD +# define BOOST_NO_CXX11_HDR_THREAD +# endif +#endif + +#if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX) +// Timed mutexes are not always available: +# define BOOST_NO_CXX11_HDR_MUTEX +#endif + // --- end --- From f43ed779733aa62c7045f735c6cc31010d3acf88 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 9 Oct 2014 19:21:42 +0100 Subject: [PATCH 10/20] Rework Intel config to make it both more accurate in C++11 mode (hopefully!) and easier to maintain. --- include/boost/config/compiler/intel.hpp | 259 ++++++++++++++++-------- 1 file changed, 172 insertions(+), 87 deletions(-) diff --git a/include/boost/config/compiler/intel.hpp b/include/boost/config/compiler/intel.hpp index a72d246c..b47610c1 100644 --- a/include/boost/config/compiler/intel.hpp +++ b/include/boost/config/compiler/intel.hpp @@ -17,7 +17,11 @@ #include "boost/config/compiler/common_edg.hpp" #if defined(__INTEL_COMPILER) +#if __INTEL_COMPILER == 9999 +# define BOOST_INTEL_CXX_VERSION 1200 // Intel bug in 12.1. +#else # define BOOST_INTEL_CXX_VERSION __INTEL_COMPILER +#endif #elif defined(__ICL) # define BOOST_INTEL_CXX_VERSION __ICL #elif defined(__ICC) @@ -34,6 +38,10 @@ # define BOOST_INTEL_STDCXX0X #endif +#ifdef __GNUC__ +# define BOOST_INTEL_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) +#endif + #if !defined(BOOST_COMPILER) # if defined(BOOST_INTEL_STDCXX0X) # define BOOST_COMPILER "Intel C++ C++0x mode version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION) @@ -220,91 +228,187 @@ template<> struct assert_intrinsic_wchar_t {}; #endif // // C++0x features -// - ICC added static_assert in 11.0 (first version with C++0x support) +// For each feature we need to check both the Intel compiler version, +// and the version of MSVC or GCC that we are emulating. +// See http://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler/ +// for a list of which features were implemented in which Intel releases. // #if defined(BOOST_INTEL_STDCXX0X) -# undef BOOST_NO_CXX11_STATIC_ASSERT -// -// These pass our test cases, but aren't officially supported according to: -// http://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler/ -// -//# undef BOOST_NO_CXX11_LAMBDAS -//# undef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -//# undef BOOST_NO_CXX11_DECLTYPE -//# undef BOOST_NO_CXX11_AUTO_DECLARATIONS -//# undef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS +// BOOST_NO_CXX11_CONSTEXPR: +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && !defined(_MSC_VER) +// Available in earlier Intel versions, but fail our tests: +# undef BOOST_NO_CXX11_CONSTEXPR +#endif +// BOOST_NO_CXX11_NULLPTR: +#if (BOOST_INTEL_CXX_VERSION >= 1210) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_NULLPTR +#endif +// BOOST_NO_CXX11_TEMPLATE_ALIASES +#if (BOOST_INTEL_CXX_VERSION >= 1210) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_TEMPLATE_ALIASES #endif -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION >= 1200) -//# undef BOOST_NO_CXX11_RVALUE_REFERENCES // Enabling this breaks Filesystem and Exception libraries -//# undef BOOST_NO_CXX11_SCOPED_ENUMS // doesn't really work!! -# undef BOOST_NO_CXX11_DELETED_FUNCTIONS -# undef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS -# undef BOOST_NO_CXX11_LAMBDAS -# undef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -# undef BOOST_NO_CXX11_DECLTYPE -# undef BOOST_NO_CXX11_AUTO_DECLARATIONS -# undef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS -# undef BOOST_NO_CXX11_TRAILING_RESULT_TYPES +// BOOST_NO_CXX11_DECLTYPE +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_DECLTYPE #endif -// icl Version 12.1.0.233 Build 20110811 and possibly some other builds -// had an incorrect __INTEL_COMPILER value of 9999. Intel say this has been fixed. -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION > 1200) -# undef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS -# undef BOOST_NO_CXX11_NULLPTR -# undef BOOST_NO_CXX11_RVALUE_REFERENCES -# undef BOOST_NO_SFINAE_EXPR -# undef BOOST_NO_CXX11_TEMPLATE_ALIASES -# undef BOOST_NO_CXX11_VARIADIC_TEMPLATES - -// http://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler/ -// continues to list scoped enum support as "Partial" -//# undef BOOST_NO_CXX11_SCOPED_ENUMS +// BOOST_NO_CXX11_DECLTYPE_N3276 +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_DECLTYPE_N3276 #endif -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION >= 1310) && !defined(_MSC_VER) -# undef BOOST_NO_CXX11_INLINE_NAMESPACES + +// BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) # undef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS -// This one generates internal compiler errors in multiprecision, disabled for now: -//# undef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -// This one generates errors when used with conditional exception specifications, for example in multiprecision: -//# undef BOOST_NO_CXX11_NOEXCEPT -# undef BOOST_NO_CXX11_RANGE_BASED_FOR -# undef BOOST_NO_CXX11_SCOPED_ENUMS -# undef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX -# undef BOOST_NO_CXX11_FINAL #endif -#if (BOOST_INTEL_CXX_VERSION >= 1310) -# undef BOOST_NO_SFINAE_EXPR + +// BOOST_NO_CXX11_RVALUE_REFERENCES +#if (BOOST_INTEL_CXX_VERSION >= 1300) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +// This is available from earlier Intel versions, but breaks Filesystem and other libraries: +# undef BOOST_NO_CXX11_RVALUE_REFERENCES #endif -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION >= 1400) && !defined(_MSC_VER) -# undef BOOST_NO_CXX11_UNICODE_LITERALS -# undef BOOST_NO_CXX11_RAW_LITERALS -// This one generates errors when used with conditional exception specifications, for example in multiprecision: -//# undef BOOST_NO_CXX11_NOEXCEPT -// This breaks multiprecision: -//# undef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -# undef BOOST_NO_CXX11_HDR_THREAD -# undef BOOST_NO_CXX11_CHAR32_T + +// BOOST_NO_CXX11_STATIC_ASSERT +#if (BOOST_INTEL_CXX_VERSION >= 1110) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40300)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_STATIC_ASSERT +#endif + +// BOOST_NO_CXX11_VARIADIC_TEMPLATES +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_VARIADIC_TEMPLATES +#endif + +// BOOST_NO_CXX11_VARIADIC_MACROS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40200)) && (!defined(_MSC_VER) || (_MSC_VER >= 1400)) +# undef BOOST_NO_CXX11_VARIADIC_MACROS +#endif + +// BOOST_NO_CXX11_AUTO_DECLARATIONS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_AUTO_DECLARATIONS +#endif + +// BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS +#endif + +// BOOST_NO_CXX11_CHAR16_T +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) # undef BOOST_NO_CXX11_CHAR16_T +#endif + +// BOOST_NO_CXX11_CHAR32_T +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) +# undef BOOST_NO_CXX11_CHAR32_T +#endif + +// BOOST_NO_CXX11_DEFAULTED_FUNCTIONS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS +#endif + +// BOOST_NO_CXX11_DELETED_FUNCTIONS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_DELETED_FUNCTIONS +#endif + +// BOOST_NO_CXX11_HDR_INITIALIZER_LIST +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700)) +# undef BOOST_NO_CXX11_HDR_INITIALIZER_LIST +#endif + +// BOOST_NO_CXX11_SCOPED_ENUMS +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40501)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700)) +// This is available but broken in earlier Intel releases. +# undef BOOST_NO_CXX11_SCOPED_ENUMS +#endif + +// BOOST_NO_SFINAE_EXPR +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) +# undef BOOST_NO_SFINAE_EXPR +#endif + +// BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +// This is available in earlier Intel releases, but breaks Multiprecision: +# undef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +#endif + +// BOOST_NO_CXX11_LAMBDAS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) +# undef BOOST_NO_CXX11_LAMBDAS +#endif + +// BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) +# undef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +#endif + +// BOOST_NO_CXX11_RANGE_BASED_FOR +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700)) +# undef BOOST_NO_CXX11_RANGE_BASED_FOR +#endif + +// BOOST_NO_CXX11_RAW_LITERALS +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_RAW_LITERALS +#endif + +// BOOST_NO_CXX11_UNICODE_LITERALS +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40500)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) +# undef BOOST_NO_CXX11_UNICODE_LITERALS +#endif + +// BOOST_NO_CXX11_NOEXCEPT +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) +// Available in earlier Intel release, but generates errors when used with +// conditional exception specifications, for example in multiprecision: +# undef BOOST_NO_CXX11_NOEXCEPT +#endif + +// BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40600)) && (!defined(_MSC_VER) || (_MSC_VER >= 9999)) +# undef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX +#endif + +// BOOST_NO_CXX11_USER_DEFINED_LITERALS +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730)) +# undef BOOST_NO_CXX11_USER_DEFINED_LITERALS +#endif + +// BOOST_NO_CXX11_ALIGNAS +#if (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730)) +# undef BOOST_NO_CXX11_ALIGNAS +#endif + +// BOOST_NO_CXX11_TRAILING_RESULT_TYPES +#if (BOOST_INTEL_CXX_VERSION >= 1200) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 180020827)) +# undef BOOST_NO_CXX11_TRAILING_RESULT_TYPES +#endif + +// BOOST_NO_CXX11_INLINE_NAMESPACES +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40400)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730)) +# undef BOOST_NO_CXX11_INLINE_NAMESPACES +#endif + +// BOOST_NO_CXX11_REF_QUALIFIERS +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40800)) && (!defined(_MSC_VER) || (_MSC_FULL_VER >= 190021730)) # undef BOOST_NO_CXX11_REF_QUALIFIERS #endif -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION >= 1500) && (!defined(_MSC_VER) || (_MSC_VER >= 1800)) -# undef BOOST_NO_CXX11_ADDRESSOF -# undef BOOST_NO_CXX11_DECLTYPE_N3276 -# undef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -# undef BOOST_NO_CXX11_RANGE_BASED_FOR -# undef BOOST_NO_CXX11_RAW_LITERALS -# undef BOOST_NO_CXX11_SCOPED_ENUMS +// BOOST_NO_CXX11_FINAL +#if (BOOST_INTEL_CXX_VERSION >= 1400) && (!defined(BOOST_INTEL_GCC_VERSION) || (BOOST_INTEL_GCC_VERSION >= 40700)) && (!defined(_MSC_VER) || (_MSC_VER >= 1700)) +# undef BOOST_NO_CXX11_FINAL #endif -#if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION >= 1500) && !defined(_MSC_VER) -# undef BOOST_NO_CXX11_ALIGNAS -# undef BOOST_NO_CXX11_CONSTEXPR -# undef BOOST_NO_CXX11_NOEXCEPT -# undef BOOST_NO_CXX11_USER_DEFINED_LITERALS + #endif +// +// Broken in all versions up to 15: +#define BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS + #if defined(BOOST_INTEL_STDCXX0X) && (BOOST_INTEL_CXX_VERSION <= 1310) # define BOOST_NO_CXX11_HDR_FUTURE # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST @@ -316,24 +420,6 @@ template<> struct assert_intrinsic_wchar_t {}; # define BOOST_NO_CXX11_HDR_TUPLE #endif -#if BOOST_INTEL_CXX_VERSION <= 1500 -# define BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS -#endif - -#if defined(_MSC_VER) && (_MSC_VER <= 1700) -// -// Although the Intel compiler is capable of supporting these, it appears not to in MSVC compatibility mode: -// -# define BOOST_NO_CXX11_HDR_INITIALIZER_LIST -# define BOOST_NO_CXX11_VARIADIC_TEMPLATES -# define BOOST_NO_CXX11_DELETED_FUNCTIONS -# define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS -# define BOOST_NO_CXX11_TEMPLATE_ALIASES -# if(BOOST_INTEL_CXX_VERSION < 1310) -# define BOOST_NO_CXX11_TRAILING_RESULT_TYPES -# endif -#endif - #if (BOOST_INTEL_CXX_VERSION < 1200) // // fenv.h appears not to work with Intel prior to 12.0: @@ -350,7 +436,6 @@ template<> struct assert_intrinsic_wchar_t {}; #if defined(_MSC_VER) && (_MSC_VER >= 1600) # define BOOST_HAS_STDINT_H -# undef BOOST_NO_CXX11_FINAL #endif #if defined(__LP64__) && defined(__GNUC__) && (BOOST_INTEL_CXX_VERSION >= 1310) && !defined(__CUDACC__) From 441311c950a40b9bea824016e9e43d7af5e3d4b0 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 10 Oct 2014 17:22:24 +0100 Subject: [PATCH 11/20] Disable __int128 support when the compiler is really CUDA. See https://svn.boost.org/trac/boost/ticket/10418. --- include/boost/config/compiler/clang.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/boost/config/compiler/clang.hpp b/include/boost/config/compiler/clang.hpp index d7fd76f9..dd54691c 100644 --- a/include/boost/config/compiler/clang.hpp +++ b/include/boost/config/compiler/clang.hpp @@ -52,7 +52,15 @@ // Clang supports "long long" in all compilation modes. #define BOOST_HAS_LONG_LONG -#if defined(__SIZEOF_INT128__) +// +// We disable this if the compiler is really nvcc as it +// doesn't actually support __int128 as of CUDA_VERSION=5000 +// even though it defines __SIZEOF_INT128__. +// See https://svn.boost.org/trac/boost/ticket/10418 +// Only re-enable this for nvcc if you're absolutely sure +// of the circumstances under which it's supported: +// +#if defined(__SIZEOF_INT128__) && !defined(__CUDACC__) # define BOOST_HAS_INT128 #endif From 003d33725e72ec5da953b927a51b25deafae242c Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 11 Oct 2014 13:10:25 +0100 Subject: [PATCH 12/20] Add helper macro - BOOST_ATTRIBUTE_UNUSED - to suppress unused type/variable warnings. --- doc/macro_reference.qbk | 2 + include/boost/config/compiler/clang.hpp | 6 ++- include/boost/config/compiler/gcc.hpp | 6 +++ include/boost/config/suffix.hpp | 7 +++ test/Jamfile.v2 | 1 + test/helper_macro_test.cpp | 60 +++++++++++++++++++++++++ 6 files changed, 80 insertions(+), 2 deletions(-) create mode 100644 test/helper_macro_test.cpp diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index a6d88138..04d8054c 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -1152,6 +1152,8 @@ Usage example: handle_error("ptr is NULL"); `` ]] +[[`BOOST_ATTRIBUTE_UNUSED`][Expands to `__attribute__((unused))` when this is available - +can be used to disable compiler warnings relating to unused types or variables.]] ] [endsect] diff --git a/include/boost/config/compiler/clang.hpp b/include/boost/config/compiler/clang.hpp index dd54691c..ab835ddc 100644 --- a/include/boost/config/compiler/clang.hpp +++ b/include/boost/config/compiler/clang.hpp @@ -205,8 +205,10 @@ # define BOOST_NO_CXX11_FINAL #endif -// Clang always supports variadic macros -// Clang always supports extern templates +// Unused attribute: +#if defined(__GNUC__) && (__GNUC__ >= 4) +# define BOOST_ATTRIBUTE_UNUSED __attribute__((unused)) +#endif #ifndef BOOST_COMPILER # define BOOST_COMPILER "Clang version " __clang_version__ diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index f217872f..714b4672 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -235,6 +235,12 @@ # define BOOST_NO_CXX11_REF_QUALIFIERS #endif +// +// Unused attribute: +#if __GNUC__ >= 4 +# define BOOST_ATTRIBUTE_UNUSED __attribute__((unused)) +#endif + #ifndef BOOST_COMPILER # define BOOST_COMPILER "GNU C++ version " __VERSION__ #endif diff --git a/include/boost/config/suffix.hpp b/include/boost/config/suffix.hpp index 237e3b87..1720dab7 100644 --- a/include/boost/config/suffix.hpp +++ b/include/boost/config/suffix.hpp @@ -940,6 +940,13 @@ namespace std{ using ::type_info; } #define BOOST_CONSTEXPR_OR_CONST constexpr #endif +// +// Unused variable/typedef workarounds: +// +#ifndef BOOST_ATTRIBUTE_UNUSED +# define BOOST_ATTRIBUTE_UNUSED +#endif + #define BOOST_STATIC_CONSTEXPR static BOOST_CONSTEXPR_OR_CONST // diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index d5d768c2..05d27df8 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -89,6 +89,7 @@ test-suite config [ compile-fail threads/test_thread_fail1.cpp ] [ compile-fail threads/test_thread_fail2.cpp ] [ compile boost_fallthrough_test.cpp : [ check-target-builds has_clang_implicit_fallthrough "Clang implicit fallthrough" : clang:"-std=c++11 -Wimplicit-fallthrough" on all ] ] + [ compile helper_macro_test.cpp ] [ run cstdint_test.cpp : : : all gcc:"-Wno-long-long -Wextra" darwin:-Wno-long-long ] [ run cstdint_test2.cpp : : : all gcc:"-Wno-long-long -Wextra" darwin:-Wno-long-long ] [ compile cstdint_include_test.cpp : all gcc:-Wextra ] diff --git a/test/helper_macro_test.cpp b/test/helper_macro_test.cpp new file mode 100644 index 00000000..81737fec --- /dev/null +++ b/test/helper_macro_test.cpp @@ -0,0 +1,60 @@ +// Use, modification and distribution are subject to 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) + +#include + +int test_fallthrough(int n) +{ + switch (n) + { + case 0: + n++; + BOOST_FALLTHROUGH; + case 1: + n++; + break; + } + return n; +} + +int test_unreachable(int i) +{ + if(BOOST_LIKELY(i)) return i; + + throw i; + BOOST_UNREACHABLE_RETURN(0); +} + +BOOST_FORCEINLINE int always_inline(int i){ return ++i; } +BOOST_NOINLINE int never_inline(int i){ return ++i; } + +BOOST_NORETURN void always_throw() +{ + throw 0; +} + + +#define test_fallthrough(x) foobar(x) + + +int main() +{ + typedef int unused_type BOOST_ATTRIBUTE_UNUSED; + try + { + int result = test_fallthrough BOOST_PREVENT_MACRO_SUBSTITUTION(0); + BOOST_STATIC_CONSTANT(bool, value = 0); + result += test_unreachable(1); + result += always_inline(2); + result += never_inline(3); + if(BOOST_UNLIKELY(!result)) + always_throw(); + } + catch(int) + { + return 1; + } + return 0; +} + From 35faf7816c7fcaf0d2d690228cb05a59481b2b05 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 11 Oct 2014 13:12:06 +0100 Subject: [PATCH 13/20] Doc regen. --- doc/html/boost_config/boost_macro_reference.html | 14 ++++++++++++++ doc/html/index.html | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/html/boost_config/boost_macro_reference.html b/doc/html/boost_config/boost_macro_reference.html index 238f20fe..59607598 100644 --- a/doc/html/boost_config/boost_macro_reference.html +++ b/doc/html/boost_config/boost_macro_reference.html @@ -3981,6 +3981,20 @@

+ + +

+ BOOST_ATTRIBUTE_UNUSED +

+ + +

+ Expands to __attribute__((unused)) when this is available - can + be used to disable compiler warnings relating to unused types or + variables. +

+ + diff --git a/doc/html/index.html b/doc/html/index.html index 4f252b54..20964d13 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -984,7 +984,7 @@ - +

Last revised: October 02, 2014 at 17:20:14 GMT

Last revised: October 11, 2014 at 12:11:50 GMT


From b811dd40aeb13bf55b6a8f265d4ddc54128bdc52 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 12 Oct 2014 10:01:22 +0100 Subject: [PATCH 14/20] Add C++14 support based on https://github.com/boostorg/config/pull/39 --- checks/Jamfile.v2 | 1049 +++--- checks/test_case.cpp | 1300 +++---- doc/macro_reference.qbk | 44 + include/boost/config/compiler/borland.hpp | 12 + include/boost/config/compiler/clang.hpp | 37 + include/boost/config/compiler/codegear.hpp | 11 + include/boost/config/compiler/common_edg.hpp | 29 + include/boost/config/compiler/cray.hpp | 13 + include/boost/config/compiler/digitalmars.hpp | 11 + include/boost/config/compiler/gcc.hpp | 29 + include/boost/config/compiler/gcc_xml.hpp | 11 + include/boost/config/compiler/metrowerks.hpp | 11 + include/boost/config/compiler/mpw.hpp | 12 + include/boost/config/compiler/pathscale.hpp | 11 + include/boost/config/compiler/pgi.hpp | 10 + include/boost/config/compiler/sunpro_cc.hpp | 10 + include/boost/config/compiler/vacpp.hpp | 29 + include/boost/config/compiler/visualc.hpp | 29 + include/boost/config/suffix.hpp | 5 + test/all/Jamfile.v2 | 1049 +++--- test/boost_no_cxx14_binary_literals.ipp | 23 + test/boost_no_cxx14_constexpr.ipp | 35 + test/boost_no_cxx14_decltype_auto.ipp | 33 + test/boost_no_cxx14_digit_separator.ipp | 23 + test/boost_no_cxx14_generic_lambda.ipp | 23 + test/boost_no_cxx14_lambda_capture.ipp | 23 + test/boost_no_cxx14_member_init.ipp | 30 + test/boost_no_cxx14_return_type_ded.ipp | 29 + test/boost_no_cxx14_var_templ.ipp | 26 + test/config_info.cpp | 34 +- test/config_test.cpp | 3108 +++++++++-------- test/no_cxx14_binary_literals_fail.cpp | 37 + test/no_cxx14_binary_literals_pass.cpp | 37 + test/no_cxx14_constexpr_fail.cpp | 37 + test/no_cxx14_constexpr_pass.cpp | 37 + test/no_cxx14_decltype_auto_fail.cpp | 37 + test/no_cxx14_decltype_auto_pass.cpp | 37 + test/no_cxx14_digit_separator_fail.cpp | 37 + test/no_cxx14_digit_separator_pass.cpp | 37 + test/no_cxx14_generic_lambda_fail.cpp | 37 + test/no_cxx14_generic_lambda_pass.cpp | 37 + test/no_cxx14_lambda_capture_fail.cpp | 37 + test/no_cxx14_lambda_capture_pass.cpp | 37 + test/no_cxx14_member_init_fail.cpp | 37 + test/no_cxx14_member_init_pass.cpp | 37 + test/no_cxx14_return_type_ded_fail.cpp | 37 + test/no_cxx14_return_type_ded_pass.cpp | 37 + test/no_cxx14_var_templ_fail.cpp | 37 + test/no_cxx14_var_templ_pass.cpp | 37 + 49 files changed, 4577 insertions(+), 3188 deletions(-) create mode 100644 test/boost_no_cxx14_binary_literals.ipp create mode 100644 test/boost_no_cxx14_constexpr.ipp create mode 100644 test/boost_no_cxx14_decltype_auto.ipp create mode 100644 test/boost_no_cxx14_digit_separator.ipp create mode 100644 test/boost_no_cxx14_generic_lambda.ipp create mode 100644 test/boost_no_cxx14_lambda_capture.ipp create mode 100644 test/boost_no_cxx14_member_init.ipp create mode 100644 test/boost_no_cxx14_return_type_ded.ipp create mode 100644 test/boost_no_cxx14_var_templ.ipp create mode 100644 test/no_cxx14_binary_literals_fail.cpp create mode 100644 test/no_cxx14_binary_literals_pass.cpp create mode 100644 test/no_cxx14_constexpr_fail.cpp create mode 100644 test/no_cxx14_constexpr_pass.cpp create mode 100644 test/no_cxx14_decltype_auto_fail.cpp create mode 100644 test/no_cxx14_decltype_auto_pass.cpp create mode 100644 test/no_cxx14_digit_separator_fail.cpp create mode 100644 test/no_cxx14_digit_separator_pass.cpp create mode 100644 test/no_cxx14_generic_lambda_fail.cpp create mode 100644 test/no_cxx14_generic_lambda_pass.cpp create mode 100644 test/no_cxx14_lambda_capture_fail.cpp create mode 100644 test/no_cxx14_lambda_capture_pass.cpp create mode 100644 test/no_cxx14_member_init_fail.cpp create mode 100644 test/no_cxx14_member_init_pass.cpp create mode 100644 test/no_cxx14_return_type_ded_fail.cpp create mode 100644 test/no_cxx14_return_type_ded_pass.cpp create mode 100644 test/no_cxx14_var_templ_fail.cpp create mode 100644 test/no_cxx14_var_templ_pass.cpp diff --git a/checks/Jamfile.v2 b/checks/Jamfile.v2 index 8ca459f3..a55b7ab1 100644 --- a/checks/Jamfile.v2 +++ b/checks/Jamfile.v2 @@ -1,6 +1,6 @@ # # *** DO NOT EDIT THIS FILE BY HAND *** -# This file was automatically generated on Mon Aug 25 18:12:27 2014 +# This file was automatically generated on Sat Oct 11 19:26:21 2014 # by libs/config/tools/generate.cpp # Copyright John Maddock. # Use, modification and distribution are subject to the @@ -26,553 +26,580 @@ rule run-simple ( sources + : args * : input-files * : requirements * : target-n explicit $(target-name).output ; } -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DECLTYPE : cxx11_decltype ; -alias cxx11_decltype : cxx11_decltype.output ; -explicit cxx11_decltype ; -run-simple test_case.cpp : : : TEST_BOOST_NO_SFINAE : sfinae ; -alias sfinae : sfinae.output ; -explicit sfinae ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS : cxx11_hdr_type_traits ; -alias cxx11_hdr_type_traits : cxx11_hdr_type_traits.output ; -explicit cxx11_hdr_type_traits ; -run-simple test_case.cpp : : : TEST_BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS : array_type_specializations ; -alias array_type_specializations : array_type_specializations.output ; -explicit array_type_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR_TRAITS : std_iterator_traits ; -alias std_iterator_traits : std_iterator_traits.output ; -explicit std_iterator_traits ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_INT128 : int128 ; -alias int128 : int128.output ; -explicit int128 ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_UNISTD_H : unistd_h ; -alias unistd_h : unistd_h.output ; -explicit unistd_h ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_RANDOM : tr1_random ; -alias tr1_random : tr1_random.output ; -explicit tr1_random ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP : cxx11_hdr_unordered_map ; -alias cxx11_hdr_unordered_map : cxx11_hdr_unordered_map.output ; -explicit cxx11_hdr_unordered_map ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_RESULT_OF : tr1_result_of ; -alias tr1_result_of : tr1_result_of.output ; -explicit tr1_result_of ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_DELAY_NP : pthread_delay_np ; -alias pthread_delay_np : pthread_delay_np.output ; -explicit pthread_delay_np ; -run-simple test_case.cpp : : : TEST_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS : pointer_to_member_template_parameters ; -alias pointer_to_member_template_parameters : pointer_to_member_template_parameters.output ; -explicit pointer_to_member_template_parameters ; -run-simple test_case.cpp : : : TEST_BOOST_NO_IS_ABSTRACT : is_abstract ; -alias is_abstract : is_abstract.output ; -explicit is_abstract ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATED_IOSTREAMS : templated_iostreams ; -alias templated_iostreams : templated_iostreams.output ; -explicit templated_iostreams ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_INLINE_NAMESPACES : cxx11_inline_namespaces ; -alias cxx11_inline_namespaces : cxx11_inline_namespaces.output ; -explicit cxx11_inline_namespaces ; -run-simple test_case.cpp : : : TEST_BOOST_NO_FENV_H : fenv_h ; -alias fenv_h : fenv_h.output ; -explicit fenv_h ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_NANOSLEEP : nanosleep ; -alias nanosleep : nanosleep.output ; -explicit nanosleep ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPEINDEX : cxx11_hdr_typeindex ; -alias cxx11_hdr_typeindex : cxx11_hdr_typeindex.output ; -explicit cxx11_hdr_typeindex ; -run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE : exception_std_namespace ; -alias exception_std_namespace : exception_std_namespace.output ; -explicit exception_std_namespace ; -run-simple test_case.cpp : : : TEST_BOOST_NO_INTEGRAL_INT64_T : integral_int64_t ; -alias integral_int64_t : integral_int64_t.output ; -explicit integral_int64_t ; -run-simple test_case.cpp : : : TEST_BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS : limits_compile_time_constants ; -alias limits_compile_time_constants : limits_compile_time_constants.output ; -explicit limits_compile_time_constants ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_REGEX : tr1_regex ; -alias tr1_regex : tr1_regex.output ; -explicit tr1_regex ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX : cxx11_unified_initialization_syntax ; -alias cxx11_unified_initialization_syntax : cxx11_unified_initialization_syntax.output ; -explicit cxx11_unified_initialization_syntax ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_MIN_MAX : std_min_max ; -alias std_min_max : std_min_max.output ; -explicit std_min_max ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_USER_DEFINED_LITERALS : cxx11_user_defined_literals ; -alias cxx11_user_defined_literals : cxx11_user_defined_literals.output ; -explicit cxx11_user_defined_literals ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_RATIO : cxx11_hdr_ratio ; -alias cxx11_hdr_ratio : cxx11_hdr_ratio.output ; -explicit cxx11_hdr_ratio ; -run-simple test_case.cpp : : : TEST_BOOST_NO_COMPLETE_VALUE_INITIALIZATION : complete_value_initialization ; -alias complete_value_initialization : complete_value_initialization.output ; -explicit complete_value_initialization ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TWO_ARG_USE_FACET : two_arg_use_facet ; +alias two_arg_use_facet : two_arg_use_facet.output ; +explicit two_arg_use_facet ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_BETHREADS : bethreads ; +alias bethreads : bethreads.output ; +explicit bethreads ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_CLOCK_GETTIME : clock_gettime ; +alias clock_gettime : clock_gettime.output ; +explicit clock_gettime ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_DIRENT_H : dirent_h ; +alias dirent_h : dirent_h.output ; +explicit dirent_h ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_EXPM1 : expm1 ; +alias expm1 : expm1.output ; +explicit expm1 ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_FTIME : ftime ; +alias ftime : ftime.output ; +explicit ftime ; run-simple test_case.cpp : : : TEST_BOOST_HAS_GETSYSTEMTIMEASFILETIME : getsystemtimeasfiletime ; alias getsystemtimeasfiletime : getsystemtimeasfiletime.output ; explicit getsystemtimeasfiletime ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ADDRESSOF : cxx11_addressof ; -alias cxx11_addressof : cxx11_addressof.output ; -explicit cxx11_addressof ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FUNCTIONAL : cxx11_hdr_functional ; -alias cxx11_hdr_functional : cxx11_hdr_functional.output ; -explicit cxx11_hdr_functional ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_GETTIMEOFDAY : gettimeofday ; +alias gettimeofday : gettimeofday.output ; +explicit gettimeofday ; run-simple test_case.cpp : : : TEST_BOOST_HAS_HASH : hash ; alias hash : hash.output ; explicit hash ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_INT128 : int128 ; +alias int128 : int128.output ; +explicit int128 ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_LOG1P : log1p ; +alias log1p : log1p.output ; +explicit log1p ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_LONG_LONG : long_long ; +alias long_long : long_long.output ; +explicit long_long ; run-simple test_case.cpp : : : TEST_BOOST_HAS_MACRO_USE_FACET : macro_use_facet ; alias macro_use_facet : macro_use_facet.output ; explicit macro_use_facet ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DECLTYPE_N3276 : cxx11_decltype_n3276 ; -alias cxx11_decltype_n3276 : cxx11_decltype_n3276.output ; -explicit cxx11_decltype_n3276 ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS : cxx11_local_class_template_parameters ; -alias cxx11_local_class_template_parameters : cxx11_local_class_template_parameters.output ; -explicit cxx11_local_class_template_parameters ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS : member_function_specializations ; -alias member_function_specializations : member_function_specializations.output ; -explicit member_function_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS : partial_specialization_implicit_default_args ; -alias partial_specialization_implicit_default_args : partial_specialization_implicit_default_args.output ; -explicit partial_specialization_implicit_default_args ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_WSTREAMBUF : std_wstreambuf ; -alias std_wstreambuf : std_wstreambuf.output ; -explicit std_wstreambuf ; -run-simple test_case.cpp : : : TEST_BOOST_NO_LONG_LONG : long_long ; -alias long_long : long_long.output ; -explicit long_long ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_MS_INT64 : ms_int64 ; +alias ms_int64 : ms_int64.output ; +explicit ms_int64 ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_NANOSLEEP : nanosleep ; +alias nanosleep : nanosleep.output ; +explicit nanosleep ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_NL_TYPES_H : nl_types_h ; +alias nl_types_h : nl_types_h.output ; +explicit nl_types_h ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_NRVO : nrvo ; +alias nrvo : nrvo.output ; +explicit nrvo ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PARTIAL_STD_ALLOCATOR : partial_std_allocator ; +alias partial_std_allocator : partial_std_allocator.output ; +explicit partial_std_allocator ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREADS : pthreads ; +alias pthreads : pthreads.output ; +explicit pthreads ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_DELAY_NP : pthread_delay_np ; +alias pthread_delay_np : pthread_delay_np.output ; +explicit pthread_delay_np ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE : pthread_mutexattr_settype ; +alias pthread_mutexattr_settype : pthread_mutexattr_settype.output ; +explicit pthread_mutexattr_settype ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_YIELD : pthread_yield ; +alias pthread_yield : pthread_yield.output ; +explicit pthread_yield ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_RVALUE_REFS : rvalue_refs ; +alias rvalue_refs : rvalue_refs.output ; +explicit rvalue_refs ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_SCHED_YIELD : sched_yield ; +alias sched_yield : sched_yield.output ; +explicit sched_yield ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_SGI_TYPE_TRAITS : sgi_type_traits ; +alias sgi_type_traits : sgi_type_traits.output ; +explicit sgi_type_traits ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_SIGACTION : sigaction ; +alias sigaction : sigaction.output ; +explicit sigaction ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_SLIST : slist ; +alias slist : slist.output ; +explicit slist ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_STATIC_ASSERT : static_assert ; +alias static_assert : static_assert.output ; +explicit static_assert ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_STDINT_H : stdint_h ; +alias stdint_h : stdint_h.output ; +explicit stdint_h ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_STLP_USE_FACET : stlp_use_facet ; +alias stlp_use_facet : stlp_use_facet.output ; +explicit stlp_use_facet ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_ARRAY : tr1_array ; +alias tr1_array : tr1_array.output ; +explicit tr1_array ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_BIND : tr1_bind ; +alias tr1_bind : tr1_bind.output ; +explicit tr1_bind ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_COMPLEX_OVERLOADS : tr1_complex_overloads ; +alias tr1_complex_overloads : tr1_complex_overloads.output ; +explicit tr1_complex_overloads ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG : tr1_complex_inverse_trig ; +alias tr1_complex_inverse_trig : tr1_complex_inverse_trig.output ; +explicit tr1_complex_inverse_trig ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_FUNCTION : tr1_function ; +alias tr1_function : tr1_function.output ; +explicit tr1_function ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_HASH : tr1_hash ; +alias tr1_hash : tr1_hash.output ; +explicit tr1_hash ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_MEM_FN : tr1_mem_fn ; +alias tr1_mem_fn : tr1_mem_fn.output ; +explicit tr1_mem_fn ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_RANDOM : tr1_random ; +alias tr1_random : tr1_random.output ; +explicit tr1_random ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_REFERENCE_WRAPPER : tr1_reference_wrapper ; +alias tr1_reference_wrapper : tr1_reference_wrapper.output ; +explicit tr1_reference_wrapper ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_REGEX : tr1_regex ; +alias tr1_regex : tr1_regex.output ; +explicit tr1_regex ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_RESULT_OF : tr1_result_of ; +alias tr1_result_of : tr1_result_of.output ; +explicit tr1_result_of ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_SHARED_PTR : tr1_shared_ptr ; +alias tr1_shared_ptr : tr1_shared_ptr.output ; +explicit tr1_shared_ptr ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_TUPLE : tr1_tuple ; +alias tr1_tuple : tr1_tuple.output ; +explicit tr1_tuple ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_TYPE_TRAITS : tr1_type_traits ; +alias tr1_type_traits : tr1_type_traits.output ; +explicit tr1_type_traits ; run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_UNORDERED_MAP : tr1_unordered_map ; alias tr1_unordered_map : tr1_unordered_map.output ; explicit tr1_unordered_map ; run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_UNORDERED_SET : tr1_unordered_set ; alias tr1_unordered_set : tr1_unordered_set.output ; explicit tr1_unordered_set ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE : cxx11_extern_template ; -alias cxx11_extern_template : cxx11_extern_template.output ; -explicit cxx11_extern_template ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CONSTEXPR : cxx11_constexpr ; -alias cxx11_constexpr : cxx11_constexpr.output ; -explicit cxx11_constexpr ; -run-simple test_case.cpp : : : TEST_BOOST_NO_INTRINSIC_WCHAR_T : intrinsic_wchar_t ; -alias intrinsic_wchar_t : intrinsic_wchar_t.output ; -explicit intrinsic_wchar_t ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_SGI_TYPE_TRAITS : sgi_type_traits ; -alias sgi_type_traits : sgi_type_traits.output ; -explicit sgi_type_traits ; -run-simple test_case.cpp : : : TEST_BOOST_NO_OPERATORS_IN_NAMESPACE : operators_in_namespace ; -alias operators_in_namespace : operators_in_namespace.output ; -explicit operators_in_namespace ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DELETED_FUNCTIONS : cxx11_deleted_functions ; -alias cxx11_deleted_functions : cxx11_deleted_functions.output ; -explicit cxx11_deleted_functions ; -run-simple test_case.cpp : : : TEST_BOOST_NO_IOSFWD : iosfwd ; -alias iosfwd : iosfwd.output ; -explicit iosfwd ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_LONG_LONG : long_long ; -alias long_long : long_long.output ; -explicit long_long ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NUMERIC_LIMITS : cxx11_numeric_limits ; -alias cxx11_numeric_limits : cxx11_numeric_limits.output ; -explicit cxx11_numeric_limits ; -run-simple test_case.cpp : : : TEST_BOOST_NO_UNREACHABLE_RETURN_DETECTION : unreachable_return_detection ; -alias unreachable_return_detection : unreachable_return_detection.output ; -explicit unreachable_return_detection ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES : cxx11_variadic_templates ; -alias cxx11_variadic_templates : cxx11_variadic_templates.output ; -explicit cxx11_variadic_templates ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_WINTHREADS : winthreads ; -alias winthreads : winthreads.output ; -explicit winthreads ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NOEXCEPT : cxx11_noexcept ; -alias cxx11_noexcept : cxx11_noexcept.output ; -explicit cxx11_noexcept ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CV_VOID_SPECIALIZATIONS : cv_void_specializations ; -alias cv_void_specializations : cv_void_specializations.output ; -explicit cv_void_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_INITIALIZER_LIST : cxx11_hdr_initializer_list ; -alias cxx11_hdr_initializer_list : cxx11_hdr_initializer_list.output ; -explicit cxx11_hdr_initializer_list ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_COMPLEX_OVERLOADS : tr1_complex_overloads ; -alias tr1_complex_overloads : tr1_complex_overloads.output ; -explicit tr1_complex_overloads ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_NL_TYPES_H : nl_types_h ; -alias nl_types_h : nl_types_h.output ; -explicit nl_types_h ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS : cxx11_function_template_default_args ; -alias cxx11_function_template_default_args : cxx11_function_template_default_args.output ; -explicit cxx11_function_template_default_args ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TWO_ARG_USE_FACET : two_arg_use_facet ; -alias two_arg_use_facet : two_arg_use_facet.output ; -explicit two_arg_use_facet ; -run-simple test_case.cpp : : : TEST_BOOST_MSVC6_MEMBER_TEMPLATES : boost_msvc6_member_templates ; -alias boost_msvc6_member_templates : boost_msvc6_member_templates.output ; -explicit boost_msvc6_member_templates ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LAMBDAS : cxx11_lambdas ; -alias cxx11_lambdas : cxx11_lambdas.output ; -explicit cxx11_lambdas ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_LOG1P : log1p ; -alias log1p : log1p.output ; -explicit log1p ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_ARRAY : tr1_array ; -alias tr1_array : tr1_array.output ; -explicit tr1_array ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_NRVO : nrvo ; -alias nrvo : nrvo.output ; -explicit nrvo ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DEFAULTED_FUNCTIONS : cxx11_defaulted_functions ; -alias cxx11_defaulted_functions : cxx11_defaulted_functions.output ; -explicit cxx11_defaulted_functions ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CHAR32_T : cxx11_char32_t ; -alias cxx11_char32_t : cxx11_char32_t.output ; -explicit cxx11_char32_t ; -run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTIONS : exceptions ; -alias exceptions : exceptions.output ; -explicit exceptions ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FUTURE : cxx11_hdr_future ; -alias cxx11_hdr_future : cxx11_hdr_future.output ; -explicit cxx11_hdr_future ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_SIGACTION : sigaction ; -alias sigaction : sigaction.output ; -explicit sigaction ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_RVALUE_REFS : rvalue_refs ; -alias rvalue_refs : rvalue_refs.output ; -explicit rvalue_refs ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CV_SPECIALIZATIONS : cv_specializations ; -alias cv_specializations : cv_specializations.output ; -explicit cv_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG : tr1_complex_inverse_trig ; -alias tr1_complex_inverse_trig : tr1_complex_inverse_trig.output ; -explicit tr1_complex_inverse_trig ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_LOCALE : std_locale ; -alias std_locale : std_locale.output ; -explicit std_locale ; -run-simple test_case.cpp : : : TEST_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS : dependent_types_in_template_value_parameters ; -alias dependent_types_in_template_value_parameters : dependent_types_in_template_value_parameters.output ; -explicit dependent_types_in_template_value_parameters ; -run-simple test_case.cpp : : : TEST_BOOST_NO_USING_TEMPLATE : using_template ; -alias using_template : using_template.output ; -explicit using_template ; -run-simple test_case.cpp : : : TEST_BOOST_NO_LIMITS : limits ; -alias limits : limits.output ; -explicit limits ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_THREAD : cxx11_hdr_thread ; -alias cxx11_hdr_thread : cxx11_hdr_thread.output ; -explicit cxx11_hdr_thread ; -run-simple test_case.cpp : : : TEST_BOOST_NO_RTTI : rtti ; -alias rtti : rtti.output ; -explicit rtti ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS : cxx11_fixed_length_variadic_template_expansion_packs ; -alias cxx11_fixed_length_variadic_template_expansion_packs : cxx11_fixed_length_variadic_template_expansion_packs.output ; -explicit cxx11_fixed_length_variadic_template_expansion_packs ; -run-simple test_case.cpp : : : TEST_BOOST_NO_LONG_LONG_NUMERIC_LIMITS : long_long_numeric_limits ; -alias long_long_numeric_limits : long_long_numeric_limits.output ; -explicit long_long_numeric_limits ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CWCTYPE : cwctype ; -alias cwctype : cwctype.output ; -explicit cwctype ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_SLIST : slist ; -alias slist : slist.output ; -explicit slist ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_TYPE_TRAITS : tr1_type_traits ; -alias tr1_type_traits : tr1_type_traits.output ; -explicit tr1_type_traits ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_GETTIMEOFDAY : gettimeofday ; -alias gettimeofday : gettimeofday.output ; -explicit gettimeofday ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREADS : pthreads ; -alias pthreads : pthreads.output ; -explicit pthreads ; -run-simple test_case.cpp : : : TEST_BOOST_DEDUCED_TYPENAME : boost_deduced_typename ; -alias boost_deduced_typename : boost_deduced_typename.output ; -explicit boost_deduced_typename ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_CLOCK_GETTIME : clock_gettime ; -alias clock_gettime : clock_gettime.output ; -explicit clock_gettime ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CONDITION_VARIABLE : cxx11_hdr_condition_variable ; -alias cxx11_hdr_condition_variable : cxx11_hdr_condition_variable.output ; -explicit cxx11_hdr_condition_variable ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STRINGSTREAM : stringstream ; -alias stringstream : stringstream.output ; -explicit stringstream ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_SYSTEM_ERROR : cxx11_hdr_system_error ; -alias cxx11_hdr_system_error : cxx11_hdr_system_error.output ; -explicit cxx11_hdr_system_error ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_BETHREADS : bethreads ; -alias bethreads : bethreads.output ; -explicit bethreads ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_TRAILING_RESULT_TYPES : cxx11_trailing_result_types ; -alias cxx11_trailing_result_types : cxx11_trailing_result_types.output ; -explicit cxx11_trailing_result_types ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_ATOMIC : cxx11_hdr_atomic ; -alias cxx11_hdr_atomic : cxx11_hdr_atomic.output ; -explicit cxx11_hdr_atomic ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_SHARED_PTR : tr1_shared_ptr ; -alias tr1_shared_ptr : tr1_shared_ptr.output ; -explicit tr1_shared_ptr ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_STD_ALIGN : cxx11_std_align ; -alias cxx11_std_align : cxx11_std_align.output ; -explicit cxx11_std_align ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CWCHAR : cwchar ; -alias cwchar : cwchar.output ; -explicit cwchar ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_MUTEX : cxx11_hdr_mutex ; -alias cxx11_hdr_mutex : cxx11_hdr_mutex.output ; -explicit cxx11_hdr_mutex ; -run-simple test_case.cpp : : : TEST_BOOST_NO_DEPENDENT_NESTED_DERIVATIONS : dependent_nested_derivations ; -alias dependent_nested_derivations : dependent_nested_derivations.output ; -explicit dependent_nested_derivations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_REF_QUALIFIERS : cxx11_ref_qualifiers ; -alias cxx11_ref_qualifiers : cxx11_ref_qualifiers.output ; -explicit cxx11_ref_qualifiers ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_BIND : tr1_bind ; -alias tr1_bind : tr1_bind.output ; -explicit tr1_bind ; -run-simple test_case.cpp : : : TEST_BOOST_MSVC_STD_ITERATOR : boost_msvc_std_iterator ; -alias boost_msvc_std_iterator : boost_msvc_std_iterator.output ; -explicit boost_msvc_std_iterator ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CHRONO : cxx11_hdr_chrono ; -alias cxx11_hdr_chrono : cxx11_hdr_chrono.output ; -explicit cxx11_hdr_chrono ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_USE_FACET : std_use_facet ; -alias std_use_facet : std_use_facet.output ; -explicit std_use_facet ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS : templated_iterator_constructors ; -alias templated_iterator_constructors : templated_iterator_constructors.output ; -explicit templated_iterator_constructors ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_STLP_USE_FACET : stlp_use_facet ; -alias stlp_use_facet : stlp_use_facet.output ; -explicit stlp_use_facet ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_DISTANCE : std_distance ; -alias std_distance : std_distance.output ; -explicit std_distance ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_TEMPLATES : template_templates ; -alias template_templates : template_templates.output ; -explicit template_templates ; -run-simple test_case.cpp : : : TEST_BOOST_NO_SFINAE_EXPR : sfinae_expr ; -alias sfinae_expr : sfinae_expr.output ; -explicit sfinae_expr ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_UTILITY : tr1_utility ; +alias tr1_utility : tr1_utility.output ; +explicit tr1_utility ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_UNISTD_H : unistd_h ; +alias unistd_h : unistd_h.output ; +explicit unistd_h ; run-simple test_case.cpp : : : TEST_BOOST_HAS_VARIADIC_TMPL : variadic_tmpl ; alias variadic_tmpl : variadic_tmpl.output ; explicit variadic_tmpl ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_TUPLE : tr1_tuple ; -alias tr1_tuple : tr1_tuple.output ; -explicit tr1_tuple ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_STDINT_H : stdint_h ; -alias stdint_h : stdint_h.output ; -explicit stdint_h ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CHAR16_T : cxx11_char16_t ; -alias cxx11_char16_t : cxx11_char16_t.output ; -explicit cxx11_char16_t ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RANGE_BASED_FOR : cxx11_range_based_for ; -alias cxx11_range_based_for : cxx11_range_based_for.output ; -explicit cxx11_range_based_for ; -run-simple test_case.cpp : : : TEST_BOOST_NO_VOID_RETURNS : void_returns ; -alias void_returns : void_returns.output ; -explicit void_returns ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CODECVT : cxx11_hdr_codecvt ; -alias cxx11_hdr_codecvt : cxx11_hdr_codecvt.output ; -explicit cxx11_hdr_codecvt ; -run-simple test_case.cpp : : : TEST_BOOST_NO_AUTO_PTR : auto_ptr ; -alias auto_ptr : auto_ptr.output ; -explicit auto_ptr ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_REGEX : cxx11_hdr_regex ; -alias cxx11_hdr_regex : cxx11_hdr_regex.output ; -explicit cxx11_hdr_regex ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_MESSAGES : std_messages ; -alias std_messages : std_messages.output ; -explicit std_messages ; -run-simple test_case.cpp : : : TEST_BOOST_BCB_PARTIAL_SPECIALIZATION_BUG : boost_bcb_partial_specialization_bug ; -alias boost_bcb_partial_specialization_bug : boost_bcb_partial_specialization_bug.output ; -explicit boost_bcb_partial_specialization_bug ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_UNORDERED_SET : cxx11_hdr_unordered_set ; -alias cxx11_hdr_unordered_set : cxx11_hdr_unordered_set.output ; -explicit cxx11_hdr_unordered_set ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_FUNCTION : tr1_function ; -alias tr1_function : tr1_function.output ; -explicit tr1_function ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_REFERENCE_WRAPPER : tr1_reference_wrapper ; -alias tr1_reference_wrapper : tr1_reference_wrapper.output ; -explicit tr1_reference_wrapper ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_STATIC_ASSERT : static_assert ; -alias static_assert : static_assert.output ; -explicit static_assert ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS : cxx11_auto_multideclarations ; -alias cxx11_auto_multideclarations : cxx11_auto_multideclarations.output ; -explicit cxx11_auto_multideclarations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TUPLE : cxx11_hdr_tuple ; -alias cxx11_hdr_tuple : cxx11_hdr_tuple.output ; -explicit cxx11_hdr_tuple ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_SCHED_YIELD : sched_yield ; -alias sched_yield : sched_yield.output ; -explicit sched_yield ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_SMART_PTR : cxx11_smart_ptr ; -alias cxx11_smart_ptr : cxx11_smart_ptr.output ; -explicit cxx11_smart_ptr ; +run-simple test_case.cpp : : : TEST_BOOST_MSVC6_MEMBER_TEMPLATES : boost_msvc6_member_templates ; +alias boost_msvc6_member_templates : boost_msvc6_member_templates.output ; +explicit boost_msvc6_member_templates ; +run-simple test_case.cpp : : : TEST_BOOST_MSVC_STD_ITERATOR : boost_msvc_std_iterator ; +alias boost_msvc_std_iterator : boost_msvc_std_iterator.output ; +explicit boost_msvc_std_iterator ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_WINTHREADS : winthreads ; +alias winthreads : winthreads.output ; +explicit winthreads ; run-simple test_case.cpp : : : TEST_BOOST_NO_ADL_BARRIER : adl_barrier ; alias adl_barrier : adl_barrier.output ; explicit adl_barrier ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS : cxx11_explicit_conversion_operators ; -alias cxx11_explicit_conversion_operators : cxx11_explicit_conversion_operators.output ; -explicit cxx11_explicit_conversion_operators ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_AUTO_DECLARATIONS : cxx11_auto_declarations ; -alias cxx11_auto_declarations : cxx11_auto_declarations.output ; -explicit cxx11_auto_declarations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_UNICODE_LITERALS : cxx11_unicode_literals ; -alias cxx11_unicode_literals : cxx11_unicode_literals.output ; -explicit cxx11_unicode_literals ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_HASH : tr1_hash ; -alias tr1_hash : tr1_hash.output ; -explicit tr1_hash ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS : member_template_friends ; -alias member_template_friends : member_template_friends.output ; -explicit member_template_friends ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_SCOPED_ENUMS : cxx11_scoped_enums ; -alias cxx11_scoped_enums : cxx11_scoped_enums.output ; -explicit cxx11_scoped_enums ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_MS_INT64 : ms_int64 ; -alias ms_int64 : ms_int64.output ; -explicit ms_int64 ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RAW_LITERALS : cxx11_raw_literals ; -alias cxx11_raw_literals : cxx11_raw_literals.output ; -explicit cxx11_raw_literals ; -run-simple test_case.cpp : : : TEST_BOOST_NO_IOSTREAM : iostream ; -alias iostream : iostream.output ; -explicit iostream ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR : cxx11_atomic_smart_ptr ; -alias cxx11_atomic_smart_ptr : cxx11_atomic_smart_ptr.output ; -explicit cxx11_atomic_smart_ptr ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_EXPM1 : expm1 ; -alias expm1 : expm1.output ; -explicit expm1 ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION : template_partial_specialization ; -alias template_partial_specialization : template_partial_specialization.output ; -explicit template_partial_specialization ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR : std_iterator ; -alias std_iterator : std_iterator.output ; -explicit std_iterator ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE : pthread_mutexattr_settype ; -alias pthread_mutexattr_settype : pthread_mutexattr_settype.output ; -explicit pthread_mutexattr_settype ; run-simple test_case.cpp : : : TEST_BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP : argument_dependent_lookup ; alias argument_dependent_lookup : argument_dependent_lookup.output ; explicit argument_dependent_lookup ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ALLOCATOR : std_allocator ; -alias std_allocator : std_allocator.output ; -explicit std_allocator ; -run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS : function_type_specializations ; -alias function_type_specializations : function_type_specializations.output ; -explicit function_type_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATES : member_templates ; -alias member_templates : member_templates.output ; -explicit member_templates ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_STATIC_ASSERT : cxx11_static_assert ; -alias cxx11_static_assert : cxx11_static_assert.output ; -explicit cxx11_static_assert ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES : cxx11_template_aliases ; -alias cxx11_template_aliases : cxx11_template_aliases.output ; -explicit cxx11_template_aliases ; -run-simple test_case.cpp : : : TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS : explicit_function_template_arguments ; -alias explicit_function_template_arguments : explicit_function_template_arguments.output ; -explicit explicit_function_template_arguments ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS : ms_int64_numeric_limits ; -alias ms_int64_numeric_limits : ms_int64_numeric_limits.output ; -explicit ms_int64_numeric_limits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS : array_type_specializations ; +alias array_type_specializations : array_type_specializations.output ; +explicit array_type_specializations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_AUTO_DECLARATIONS : cxx11_auto_declarations ; +alias cxx11_auto_declarations : cxx11_auto_declarations.output ; +explicit cxx11_auto_declarations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS : cxx11_auto_multideclarations ; +alias cxx11_auto_multideclarations : cxx11_auto_multideclarations.output ; +explicit cxx11_auto_multideclarations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_AUTO_PTR : auto_ptr ; +alias auto_ptr : auto_ptr.output ; +explicit auto_ptr ; +run-simple test_case.cpp : : : TEST_BOOST_BCB_PARTIAL_SPECIALIZATION_BUG : boost_bcb_partial_specialization_bug ; +alias boost_bcb_partial_specialization_bug : boost_bcb_partial_specialization_bug.output ; +explicit boost_bcb_partial_specialization_bug ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CHAR16_T : cxx11_char16_t ; +alias cxx11_char16_t : cxx11_char16_t.output ; +explicit cxx11_char16_t ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CHAR32_T : cxx11_char32_t ; +alias cxx11_char32_t : cxx11_char32_t.output ; +explicit cxx11_char32_t ; +run-simple test_case.cpp : : : TEST_BOOST_NO_COMPLETE_VALUE_INITIALIZATION : complete_value_initialization ; +alias complete_value_initialization : complete_value_initialization.output ; +explicit complete_value_initialization ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_CONSTEXPR : cxx11_constexpr ; +alias cxx11_constexpr : cxx11_constexpr.output ; +explicit cxx11_constexpr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CTYPE_FUNCTIONS : ctype_functions ; +alias ctype_functions : ctype_functions.output ; +explicit ctype_functions ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CV_SPECIALIZATIONS : cv_specializations ; +alias cv_specializations : cv_specializations.output ; +explicit cv_specializations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CV_VOID_SPECIALIZATIONS : cv_void_specializations ; +alias cv_void_specializations : cv_void_specializations.output ; +explicit cv_void_specializations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CWCHAR : cwchar ; +alias cwchar : cwchar.output ; +explicit cwchar ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CWCTYPE : cwctype ; +alias cwctype : cwctype.output ; +explicit cwctype ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ADDRESSOF : cxx11_addressof ; +alias cxx11_addressof : cxx11_addressof.output ; +explicit cxx11_addressof ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ALIGNAS : cxx11_alignas ; +alias cxx11_alignas : cxx11_alignas.output ; +explicit cxx11_alignas ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ALLOCATOR : cxx11_allocator ; +alias cxx11_allocator : cxx11_allocator.output ; +explicit cxx11_allocator ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR : cxx11_atomic_smart_ptr ; +alias cxx11_atomic_smart_ptr : cxx11_atomic_smart_ptr.output ; +explicit cxx11_atomic_smart_ptr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FINAL : cxx11_final ; +alias cxx11_final : cxx11_final.output ; +explicit cxx11_final ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_ARRAY : cxx11_hdr_array ; +alias cxx11_hdr_array : cxx11_hdr_array.output ; +explicit cxx11_hdr_array ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_ATOMIC : cxx11_hdr_atomic ; +alias cxx11_hdr_atomic : cxx11_hdr_atomic.output ; +explicit cxx11_hdr_atomic ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CHRONO : cxx11_hdr_chrono ; +alias cxx11_hdr_chrono : cxx11_hdr_chrono.output ; +explicit cxx11_hdr_chrono ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CODECVT : cxx11_hdr_codecvt ; +alias cxx11_hdr_codecvt : cxx11_hdr_codecvt.output ; +explicit cxx11_hdr_codecvt ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_CONDITION_VARIABLE : cxx11_hdr_condition_variable ; +alias cxx11_hdr_condition_variable : cxx11_hdr_condition_variable.output ; +explicit cxx11_hdr_condition_variable ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FORWARD_LIST : cxx11_hdr_forward_list ; +alias cxx11_hdr_forward_list : cxx11_hdr_forward_list.output ; +explicit cxx11_hdr_forward_list ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FUTURE : cxx11_hdr_future ; +alias cxx11_hdr_future : cxx11_hdr_future.output ; +explicit cxx11_hdr_future ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_INITIALIZER_LIST : cxx11_hdr_initializer_list ; +alias cxx11_hdr_initializer_list : cxx11_hdr_initializer_list.output ; +explicit cxx11_hdr_initializer_list ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_MUTEX : cxx11_hdr_mutex ; +alias cxx11_hdr_mutex : cxx11_hdr_mutex.output ; +explicit cxx11_hdr_mutex ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_RANDOM : cxx11_hdr_random ; alias cxx11_hdr_random : cxx11_hdr_random.output ; explicit cxx11_hdr_random ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_RATIO : cxx11_hdr_ratio ; +alias cxx11_hdr_ratio : cxx11_hdr_ratio.output ; +explicit cxx11_hdr_ratio ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_REGEX : cxx11_hdr_regex ; +alias cxx11_hdr_regex : cxx11_hdr_regex.output ; +explicit cxx11_hdr_regex ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_SYSTEM_ERROR : cxx11_hdr_system_error ; +alias cxx11_hdr_system_error : cxx11_hdr_system_error.output ; +explicit cxx11_hdr_system_error ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_THREAD : cxx11_hdr_thread ; +alias cxx11_hdr_thread : cxx11_hdr_thread.output ; +explicit cxx11_hdr_thread ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TUPLE : cxx11_hdr_tuple ; +alias cxx11_hdr_tuple : cxx11_hdr_tuple.output ; +explicit cxx11_hdr_tuple ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPEINDEX : cxx11_hdr_typeindex ; +alias cxx11_hdr_typeindex : cxx11_hdr_typeindex.output ; +explicit cxx11_hdr_typeindex ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS : cxx11_hdr_type_traits ; +alias cxx11_hdr_type_traits : cxx11_hdr_type_traits.output ; +explicit cxx11_hdr_type_traits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP : cxx11_hdr_unordered_map ; +alias cxx11_hdr_unordered_map : cxx11_hdr_unordered_map.output ; +explicit cxx11_hdr_unordered_map ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_UNORDERED_SET : cxx11_hdr_unordered_set ; +alias cxx11_hdr_unordered_set : cxx11_hdr_unordered_set.output ; +explicit cxx11_hdr_unordered_set ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_INLINE_NAMESPACES : cxx11_inline_namespaces ; +alias cxx11_inline_namespaces : cxx11_inline_namespaces.output ; +explicit cxx11_inline_namespaces ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS : cxx11_non_public_defaulted_functions ; +alias cxx11_non_public_defaulted_functions : cxx11_non_public_defaulted_functions.output ; +explicit cxx11_non_public_defaulted_functions ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NUMERIC_LIMITS : cxx11_numeric_limits ; +alias cxx11_numeric_limits : cxx11_numeric_limits.output ; +explicit cxx11_numeric_limits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_REF_QUALIFIERS : cxx11_ref_qualifiers ; +alias cxx11_ref_qualifiers : cxx11_ref_qualifiers.output ; +explicit cxx11_ref_qualifiers ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_SMART_PTR : cxx11_smart_ptr ; +alias cxx11_smart_ptr : cxx11_smart_ptr.output ; +explicit cxx11_smart_ptr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_STD_ALIGN : cxx11_std_align ; +alias cxx11_std_align : cxx11_std_align.output ; +explicit cxx11_std_align ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_TRAILING_RESULT_TYPES : cxx11_trailing_result_types ; +alias cxx11_trailing_result_types : cxx11_trailing_result_types.output ; +explicit cxx11_trailing_result_types ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_USER_DEFINED_LITERALS : cxx11_user_defined_literals ; +alias cxx11_user_defined_literals : cxx11_user_defined_literals.output ; +explicit cxx11_user_defined_literals ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_BINARY_LITERALS : cxx14_binary_literals ; +alias cxx14_binary_literals : cxx14_binary_literals.output ; +explicit cxx14_binary_literals ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_CONSTEXPR : cxx14_constexpr ; +alias cxx14_constexpr : cxx14_constexpr.output ; +explicit cxx14_constexpr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_DECLTYPE_AUTO : cxx14_decltype_auto ; +alias cxx14_decltype_auto : cxx14_decltype_auto.output ; +explicit cxx14_decltype_auto ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_DIGIT_SEPARATOR : cxx14_digit_separator ; +alias cxx14_digit_separator : cxx14_digit_separator.output ; +explicit cxx14_digit_separator ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS : cxx14_generic_lambdas ; +alias cxx14_generic_lambdas : cxx14_generic_lambdas.output ; +explicit cxx14_generic_lambdas ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES : cxx14_initialized_lambda_captures ; +alias cxx14_initialized_lambda_captures : cxx14_initialized_lambda_captures.output ; +explicit cxx14_initialized_lambda_captures ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_AGGREGATE_NSDMI : cxx14_aggregate_nsdmi ; +alias cxx14_aggregate_nsdmi : cxx14_aggregate_nsdmi.output ; +explicit cxx14_aggregate_nsdmi ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION : cxx14_return_type_deduction ; +alias cxx14_return_type_deduction : cxx14_return_type_deduction.output ; +explicit cxx14_return_type_deduction ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX14_VARIABLE_TEMPLATES : cxx14_variable_templates ; +alias cxx14_variable_templates : cxx14_variable_templates.output ; +explicit cxx14_variable_templates ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FUNCTIONAL : cxx11_hdr_functional ; +alias cxx11_hdr_functional : cxx11_hdr_functional.output ; +explicit cxx11_hdr_functional ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DECLTYPE : cxx11_decltype ; +alias cxx11_decltype : cxx11_decltype.output ; +explicit cxx11_decltype ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DECLTYPE_N3276 : cxx11_decltype_n3276 ; +alias cxx11_decltype_n3276 : cxx11_decltype_n3276.output ; +explicit cxx11_decltype_n3276 ; +run-simple test_case.cpp : : : TEST_BOOST_DEDUCED_TYPENAME : boost_deduced_typename ; +alias boost_deduced_typename : boost_deduced_typename.output ; +explicit boost_deduced_typename ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DEFAULTED_FUNCTIONS : cxx11_defaulted_functions ; +alias cxx11_defaulted_functions : cxx11_defaulted_functions.output ; +explicit cxx11_defaulted_functions ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_DELETED_FUNCTIONS : cxx11_deleted_functions ; +alias cxx11_deleted_functions : cxx11_deleted_functions.output ; +explicit cxx11_deleted_functions ; +run-simple test_case.cpp : : : TEST_BOOST_NO_DEPENDENT_NESTED_DERIVATIONS : dependent_nested_derivations ; +alias dependent_nested_derivations : dependent_nested_derivations.output ; +explicit dependent_nested_derivations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS : dependent_types_in_template_value_parameters ; +alias dependent_types_in_template_value_parameters : dependent_types_in_template_value_parameters.output ; +explicit dependent_types_in_template_value_parameters ; +run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTIONS : exceptions ; +alias exceptions : exceptions.output ; +explicit exceptions ; +run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE : exception_std_namespace ; +alias exception_std_namespace : exception_std_namespace.output ; +explicit exception_std_namespace ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS : cxx11_explicit_conversion_operators ; +alias cxx11_explicit_conversion_operators : cxx11_explicit_conversion_operators.output ; +explicit cxx11_explicit_conversion_operators ; +run-simple test_case.cpp : : : TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS : explicit_function_template_arguments ; +alias explicit_function_template_arguments : explicit_function_template_arguments.output ; +explicit explicit_function_template_arguments ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE : cxx11_extern_template ; +alias cxx11_extern_template : cxx11_extern_template.output ; +explicit cxx11_extern_template ; +run-simple test_case.cpp : : : TEST_BOOST_NO_FENV_H : fenv_h ; +alias fenv_h : fenv_h.output ; +explicit fenv_h ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS : cxx11_fixed_length_variadic_template_expansion_packs ; +alias cxx11_fixed_length_variadic_template_expansion_packs : cxx11_fixed_length_variadic_template_expansion_packs.output ; +explicit cxx11_fixed_length_variadic_template_expansion_packs ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS : cxx11_function_template_default_args ; +alias cxx11_function_template_default_args : cxx11_function_template_default_args.output ; +explicit cxx11_function_template_default_args ; +run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS : function_type_specializations ; +alias function_type_specializations : function_type_specializations.output ; +explicit function_type_specializations ; run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING : function_template_ordering ; alias function_template_ordering : function_template_ordering.output ; explicit function_template_ordering ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PARTIAL_STD_ALLOCATOR : partial_std_allocator ; -alias partial_std_allocator : partial_std_allocator.output ; -explicit partial_std_allocator ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS : ms_int64_numeric_limits ; +alias ms_int64_numeric_limits : ms_int64_numeric_limits.output ; +explicit ms_int64_numeric_limits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_INCLASS_MEMBER_INITIALIZATION : inclass_member_initialization ; +alias inclass_member_initialization : inclass_member_initialization.output ; +explicit inclass_member_initialization ; +run-simple test_case.cpp : : : TEST_BOOST_NO_INTEGRAL_INT64_T : integral_int64_t ; +alias integral_int64_t : integral_int64_t.output ; +explicit integral_int64_t ; +run-simple test_case.cpp : : : TEST_BOOST_NO_IOSFWD : iosfwd ; +alias iosfwd : iosfwd.output ; +explicit iosfwd ; +run-simple test_case.cpp : : : TEST_BOOST_NO_IOSTREAM : iostream ; +alias iostream : iostream.output ; +explicit iostream ; +run-simple test_case.cpp : : : TEST_BOOST_NO_IS_ABSTRACT : is_abstract ; +alias is_abstract : is_abstract.output ; +explicit is_abstract ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS : templated_iterator_constructors ; +alias templated_iterator_constructors : templated_iterator_constructors.output ; +explicit templated_iterator_constructors ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LAMBDAS : cxx11_lambdas ; +alias cxx11_lambdas : cxx11_lambdas.output ; +explicit cxx11_lambdas ; +run-simple test_case.cpp : : : TEST_BOOST_NO_LIMITS : limits ; +alias limits : limits.output ; +explicit limits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS : limits_compile_time_constants ; +alias limits_compile_time_constants : limits_compile_time_constants.output ; +explicit limits_compile_time_constants ; +run-simple test_case.cpp : : : TEST_BOOST_NO_LONG_LONG_NUMERIC_LIMITS : long_long_numeric_limits ; +alias long_long_numeric_limits : long_long_numeric_limits.output ; +explicit long_long_numeric_limits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_LONG_LONG : long_long ; +alias long_long : long_long.output ; +explicit long_long ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS : member_function_specializations ; +alias member_function_specializations : member_function_specializations.output ; +explicit member_function_specializations ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATES : member_templates ; +alias member_templates : member_templates.output ; +explicit member_templates ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS : member_template_friends ; +alias member_template_friends : member_template_friends.output ; +explicit member_template_friends ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD : member_template_keyword ; +alias member_template_keyword : member_template_keyword.output ; +explicit member_template_keyword ; +run-simple test_case.cpp : : : TEST_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS : pointer_to_member_template_parameters ; +alias pointer_to_member_template_parameters : pointer_to_member_template_parameters.output ; +explicit pointer_to_member_template_parameters ; +run-simple test_case.cpp : : : TEST_BOOST_NO_NESTED_FRIENDSHIP : nested_friendship ; +alias nested_friendship : nested_friendship.output ; +explicit nested_friendship ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NOEXCEPT : cxx11_noexcept ; +alias cxx11_noexcept : cxx11_noexcept.output ; +explicit cxx11_noexcept ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NULLPTR : cxx11_nullptr ; +alias cxx11_nullptr : cxx11_nullptr.output ; +explicit cxx11_nullptr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_OPERATORS_IN_NAMESPACE : operators_in_namespace ; +alias operators_in_namespace : operators_in_namespace.output ; +explicit operators_in_namespace ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION : template_partial_specialization ; +alias template_partial_specialization : template_partial_specialization.output ; +explicit template_partial_specialization ; +run-simple test_case.cpp : : : TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS : partial_specialization_implicit_default_args ; +alias partial_specialization_implicit_default_args : partial_specialization_implicit_default_args.output ; +explicit partial_specialization_implicit_default_args ; +run-simple test_case.cpp : : : TEST_BOOST_NO_PRIVATE_IN_AGGREGATE : private_in_aggregate ; +alias private_in_aggregate : private_in_aggregate.output ; +explicit private_in_aggregate ; +run-simple test_case.cpp : : : TEST_BOOST_NO_POINTER_TO_MEMBER_CONST : pointer_to_member_const ; +alias pointer_to_member_const : pointer_to_member_const.output ; +explicit pointer_to_member_const ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RANGE_BASED_FOR : cxx11_range_based_for ; +alias cxx11_range_based_for : cxx11_range_based_for.output ; +explicit cxx11_range_based_for ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RAW_LITERALS : cxx11_raw_literals ; +alias cxx11_raw_literals : cxx11_raw_literals.output ; +explicit cxx11_raw_literals ; +run-simple test_case.cpp : : : TEST_BOOST_NO_UNREACHABLE_RETURN_DETECTION : unreachable_return_detection ; +alias unreachable_return_detection : unreachable_return_detection.output ; +explicit unreachable_return_detection ; +run-simple test_case.cpp : : : TEST_BOOST_NO_RTTI : rtti ; +alias rtti : rtti.output ; +explicit rtti ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RVALUE_REFERENCES : cxx11_rvalue_references ; +alias cxx11_rvalue_references : cxx11_rvalue_references.output ; +explicit cxx11_rvalue_references ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_SCOPED_ENUMS : cxx11_scoped_enums ; +alias cxx11_scoped_enums : cxx11_scoped_enums.output ; +explicit cxx11_scoped_enums ; +run-simple test_case.cpp : : : TEST_BOOST_NO_SFINAE : sfinae ; +alias sfinae : sfinae.output ; +explicit sfinae ; +run-simple test_case.cpp : : : TEST_BOOST_NO_SFINAE_EXPR : sfinae_expr ; +alias sfinae_expr : sfinae_expr.output ; +explicit sfinae_expr ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STRINGSTREAM : stringstream ; +alias stringstream : stringstream.output ; +explicit stringstream ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_STATIC_ASSERT : cxx11_static_assert ; +alias cxx11_static_assert : cxx11_static_assert.output ; +explicit cxx11_static_assert ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STDC_NAMESPACE : stdc_namespace ; +alias stdc_namespace : stdc_namespace.output ; +explicit stdc_namespace ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ALLOCATOR : std_allocator ; +alias std_allocator : std_allocator.output ; +explicit std_allocator ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_DISTANCE : std_distance ; +alias std_distance : std_distance.output ; +explicit std_distance ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR : std_iterator ; +alias std_iterator : std_iterator.output ; +explicit std_iterator ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR_TRAITS : std_iterator_traits ; +alias std_iterator_traits : std_iterator_traits.output ; +explicit std_iterator_traits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_LOCALE : std_locale ; +alias std_locale : std_locale.output ; +explicit std_locale ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_MESSAGES : std_messages ; +alias std_messages : std_messages.output ; +explicit std_messages ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_MIN_MAX : std_min_max ; +alias std_min_max : std_min_max.output ; +explicit std_min_max ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN : std_output_iterator_assign ; +alias std_output_iterator_assign : std_output_iterator_assign.output ; +explicit std_output_iterator_assign ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_TYPEINFO : std_typeinfo ; +alias std_typeinfo : std_typeinfo.output ; +explicit std_typeinfo ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_USE_FACET : std_use_facet ; +alias std_use_facet : std_use_facet.output ; +explicit std_use_facet ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_WSTREAMBUF : std_wstreambuf ; +alias std_wstreambuf : std_wstreambuf.output ; +explicit std_wstreambuf ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_WSTRING : std_wstring ; +alias std_wstring : std_wstring.output ; +explicit std_wstring ; +run-simple test_case.cpp : : : TEST_BOOST_NO_SWPRINTF : swprintf ; +alias swprintf : swprintf.output ; +explicit swprintf ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES : cxx11_template_aliases ; +alias cxx11_template_aliases : cxx11_template_aliases.output ; +explicit cxx11_template_aliases ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATED_IOSTREAMS : templated_iostreams ; +alias templated_iostreams : templated_iostreams.output ; +explicit templated_iostreams ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_TEMPLATES : template_templates ; +alias template_templates : template_templates.output ; +explicit template_templates ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS : cxx11_local_class_template_parameters ; +alias cxx11_local_class_template_parameters : cxx11_local_class_template_parameters.output ; +explicit cxx11_local_class_template_parameters ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP : two_phase_name_lookup ; +alias two_phase_name_lookup : two_phase_name_lookup.output ; +explicit two_phase_name_lookup ; run-simple test_case.cpp : : : TEST_BOOST_NO_TYPEID : typeid ; alias typeid : typeid.output ; explicit typeid ; run-simple test_case.cpp : : : TEST_BOOST_NO_TYPENAME_WITH_CTOR : typename_with_ctor ; alias typename_with_ctor : typename_with_ctor.output ; explicit typename_with_ctor ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_ARRAY : cxx11_hdr_array ; -alias cxx11_hdr_array : cxx11_hdr_array.output ; -explicit cxx11_hdr_array ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_MEM_FN : tr1_mem_fn ; -alias tr1_mem_fn : tr1_mem_fn.output ; -explicit tr1_mem_fn ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ALIGNAS : cxx11_alignas ; -alias cxx11_alignas : cxx11_alignas.output ; -explicit cxx11_alignas ; -run-simple test_case.cpp : : : TEST_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE : using_declaration_overloads_from_typename_base ; -alias using_declaration_overloads_from_typename_base : using_declaration_overloads_from_typename_base.output ; -explicit using_declaration_overloads_from_typename_base ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_YIELD : pthread_yield ; -alias pthread_yield : pthread_yield.output ; -explicit pthread_yield ; -run-simple test_case.cpp : : : TEST_BOOST_NO_INCLASS_MEMBER_INITIALIZATION : inclass_member_initialization ; -alias inclass_member_initialization : inclass_member_initialization.output ; -explicit inclass_member_initialization ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_TYPEINFO : std_typeinfo ; -alias std_typeinfo : std_typeinfo.output ; -explicit std_typeinfo ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_VARIADIC_MACROS : cxx11_variadic_macros ; -alias cxx11_variadic_macros : cxx11_variadic_macros.output ; -explicit cxx11_variadic_macros ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_UNICODE_LITERALS : cxx11_unicode_literals ; +alias cxx11_unicode_literals : cxx11_unicode_literals.output ; +explicit cxx11_unicode_literals ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX : cxx11_unified_initialization_syntax ; +alias cxx11_unified_initialization_syntax : cxx11_unified_initialization_syntax.output ; +explicit cxx11_unified_initialization_syntax ; run-simple test_case.cpp : : : TEST_BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL : boost_function_scope_using_declaration_breaks_adl ; alias boost_function_scope_using_declaration_breaks_adl : boost_function_scope_using_declaration_breaks_adl.output ; explicit boost_function_scope_using_declaration_breaks_adl ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_WSTRING : std_wstring ; -alias std_wstring : std_wstring.output ; -explicit std_wstring ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CTYPE_FUNCTIONS : ctype_functions ; -alias ctype_functions : ctype_functions.output ; -explicit ctype_functions ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NULLPTR : cxx11_nullptr ; -alias cxx11_nullptr : cxx11_nullptr.output ; -explicit cxx11_nullptr ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD : member_template_keyword ; -alias member_template_keyword : member_template_keyword.output ; -explicit member_template_keyword ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_RVALUE_REFERENCES : cxx11_rvalue_references ; -alias cxx11_rvalue_references : cxx11_rvalue_references.output ; -explicit cxx11_rvalue_references ; -run-simple test_case.cpp : : : TEST_BOOST_NO_PRIVATE_IN_AGGREGATE : private_in_aggregate ; -alias private_in_aggregate : private_in_aggregate.output ; -explicit private_in_aggregate ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_ALLOCATOR : cxx11_allocator ; -alias cxx11_allocator : cxx11_allocator.output ; -explicit cxx11_allocator ; -run-simple test_case.cpp : : : TEST_BOOST_NO_SWPRINTF : swprintf ; -alias swprintf : swprintf.output ; -explicit swprintf ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FINAL : cxx11_final ; -alias cxx11_final : cxx11_final.output ; -explicit cxx11_final ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STDC_NAMESPACE : stdc_namespace ; -alias stdc_namespace : stdc_namespace.output ; -explicit stdc_namespace ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP : two_phase_name_lookup ; -alias two_phase_name_lookup : two_phase_name_lookup.output ; -explicit two_phase_name_lookup ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_FORWARD_LIST : cxx11_hdr_forward_list ; -alias cxx11_hdr_forward_list : cxx11_hdr_forward_list.output ; -explicit cxx11_hdr_forward_list ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN : std_output_iterator_assign ; -alias std_output_iterator_assign : std_output_iterator_assign.output ; -explicit std_output_iterator_assign ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_TR1_UTILITY : tr1_utility ; -alias tr1_utility : tr1_utility.output ; -explicit tr1_utility ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS : cxx11_non_public_defaulted_functions ; -alias cxx11_non_public_defaulted_functions : cxx11_non_public_defaulted_functions.output ; -explicit cxx11_non_public_defaulted_functions ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_DIRENT_H : dirent_h ; -alias dirent_h : dirent_h.output ; -explicit dirent_h ; -run-simple test_case.cpp : : : TEST_BOOST_NO_NESTED_FRIENDSHIP : nested_friendship ; -alias nested_friendship : nested_friendship.output ; -explicit nested_friendship ; -run-simple test_case.cpp : : : TEST_BOOST_NO_POINTER_TO_MEMBER_CONST : pointer_to_member_const ; -alias pointer_to_member_const : pointer_to_member_const.output ; -explicit pointer_to_member_const ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_FTIME : ftime ; -alias ftime : ftime.output ; -explicit ftime ; +run-simple test_case.cpp : : : TEST_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE : using_declaration_overloads_from_typename_base ; +alias using_declaration_overloads_from_typename_base : using_declaration_overloads_from_typename_base.output ; +explicit using_declaration_overloads_from_typename_base ; +run-simple test_case.cpp : : : TEST_BOOST_NO_USING_TEMPLATE : using_template ; +alias using_template : using_template.output ; +explicit using_template ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_VARIADIC_MACROS : cxx11_variadic_macros ; +alias cxx11_variadic_macros : cxx11_variadic_macros.output ; +explicit cxx11_variadic_macros ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES : cxx11_variadic_templates ; +alias cxx11_variadic_templates : cxx11_variadic_templates.output ; +explicit cxx11_variadic_templates ; +run-simple test_case.cpp : : : TEST_BOOST_NO_VOID_RETURNS : void_returns ; +alias void_returns : void_returns.output ; +explicit void_returns ; +run-simple test_case.cpp : : : TEST_BOOST_NO_INTRINSIC_WCHAR_T : intrinsic_wchar_t ; +alias intrinsic_wchar_t : intrinsic_wchar_t.output ; +explicit intrinsic_wchar_t ; diff --git a/checks/test_case.cpp b/checks/test_case.cpp index 49dfb968..a7a624ad 100644 --- a/checks/test_case.cpp +++ b/checks/test_case.cpp @@ -1,4 +1,4 @@ -// This file was automatically generated on Mon Aug 25 18:12:27 2014 +// This file was automatically generated on Sat Oct 11 19:26:21 2014 // by libs/config/tools/generate.cpp // Copyright John Maddock 2002-4. // Use, modification and distribution are subject to the @@ -9,157 +9,181 @@ // Revision $Id$ // -#ifdef TEST_BOOST_NO_CXX11_DECLTYPE -# include "../test/boost_no_decltype.ipp" -namespace test = boost_no_cxx11_decltype; +#ifdef TEST_BOOST_HAS_TWO_ARG_USE_FACET +# include "../test/boost_has_2arg_use_facet.ipp" +namespace test = boost_has_two_arg_use_facet; #endif -#ifdef TEST_BOOST_NO_SFINAE -# include "../test/boost_no_sfinae.ipp" -namespace test = boost_no_sfinae; +#ifdef TEST_BOOST_HAS_BETHREADS +# include "../test/boost_has_bethreads.ipp" +namespace test = boost_has_bethreads; #endif -#ifdef TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS -# include "../test/boost_no_cxx11_hdr_type_traits.ipp" -namespace test = boost_no_cxx11_hdr_type_traits; +#ifdef TEST_BOOST_HAS_CLOCK_GETTIME +# include "../test/boost_has_clock_gettime.ipp" +namespace test = boost_has_clock_gettime; #endif -#ifdef TEST_BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS -# include "../test/boost_no_array_type_spec.ipp" -namespace test = boost_no_array_type_specializations; +#ifdef TEST_BOOST_HAS_DIRENT_H +# include "../test/boost_has_dirent_h.ipp" +namespace test = boost_has_dirent_h; #endif -#ifdef TEST_BOOST_NO_STD_ITERATOR_TRAITS -# include "../test/boost_no_std_iter_traits.ipp" -namespace test = boost_no_std_iterator_traits; +#ifdef TEST_BOOST_HAS_EXPM1 +# include "../test/boost_has_expm1.ipp" +namespace test = boost_has_expm1; #endif -#ifdef TEST_BOOST_HAS_INT128 -# include "../test/boost_has_int128.ipp" -namespace test = boost_has_int128; -#endif -#ifdef TEST_BOOST_HAS_UNISTD_H -# include "../test/boost_has_unistd_h.ipp" -namespace test = boost_has_unistd_h; -#endif -#ifdef TEST_BOOST_HAS_TR1_RANDOM -# include "../test/boost_has_tr1_random.ipp" -namespace test = boost_has_tr1_random; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP -# include "../test/boost_no_cxx11_hdr_unordered_map.ipp" -namespace test = boost_no_cxx11_hdr_unordered_map; -#endif -#ifdef TEST_BOOST_HAS_TR1_RESULT_OF -# include "../test/boost_has_tr1_result_of.ipp" -namespace test = boost_has_tr1_result_of; -#endif -#ifdef TEST_BOOST_HAS_PTHREAD_DELAY_NP -# include "../test/boost_has_pthread_delay_np.ipp" -namespace test = boost_has_pthread_delay_np; -#endif -#ifdef TEST_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS -# include "../test/boost_no_mem_tem_pnts.ipp" -namespace test = boost_no_pointer_to_member_template_parameters; -#endif -#ifdef TEST_BOOST_NO_IS_ABSTRACT -# include "../test/boost_no_is_abstract.ipp" -namespace test = boost_no_is_abstract; -#endif -#ifdef TEST_BOOST_NO_TEMPLATED_IOSTREAMS -# include "../test/boost_no_template_streams.ipp" -namespace test = boost_no_templated_iostreams; -#endif -#ifdef TEST_BOOST_NO_CXX11_INLINE_NAMESPACES -# include "../test/boost_no_cxx11_inline_namespaces.ipp" -namespace test = boost_no_cxx11_inline_namespaces; -#endif -#ifdef TEST_BOOST_NO_FENV_H -# include "../test/boost_no_fenv_h.ipp" -namespace test = boost_no_fenv_h; -#endif -#ifdef TEST_BOOST_HAS_NANOSLEEP -# include "../test/boost_has_nanosleep.ipp" -namespace test = boost_has_nanosleep; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_TYPEINDEX -# include "../test/boost_no_cxx11_hdr_typeindex.ipp" -namespace test = boost_no_cxx11_hdr_typeindex; -#endif -#ifdef TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE -# include "../test/boost_no_excep_std.ipp" -namespace test = boost_no_exception_std_namespace; -#endif -#ifdef TEST_BOOST_NO_INTEGRAL_INT64_T -# include "../test/boost_no_integral_int64_t.ipp" -namespace test = boost_no_integral_int64_t; -#endif -#ifdef TEST_BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS -# include "../test/boost_no_limits_const_exp.ipp" -namespace test = boost_no_limits_compile_time_constants; -#endif -#ifdef TEST_BOOST_HAS_TR1_REGEX -# include "../test/boost_has_tr1_regex.ipp" -namespace test = boost_has_tr1_regex; -#endif -#ifdef TEST_BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX -# include "../test/boost_no_unified_init.ipp" -namespace test = boost_no_cxx11_unified_initialization_syntax; -#endif -#ifdef TEST_BOOST_NO_STD_MIN_MAX -# include "../test/boost_no_std_min_max.ipp" -namespace test = boost_no_std_min_max; -#endif -#ifdef TEST_BOOST_NO_CXX11_USER_DEFINED_LITERALS -# include "../test/boost_no_cxx11_user_lit.ipp" -namespace test = boost_no_cxx11_user_defined_literals; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_RATIO -# include "../test/boost_no_cxx11_hdr_ratio.ipp" -namespace test = boost_no_cxx11_hdr_ratio; -#endif -#ifdef TEST_BOOST_NO_COMPLETE_VALUE_INITIALIZATION -# include "../test/boost_no_com_value_init.ipp" -namespace test = boost_no_complete_value_initialization; +#ifdef TEST_BOOST_HAS_FTIME +# include "../test/boost_has_ftime.ipp" +namespace test = boost_has_ftime; #endif #ifdef TEST_BOOST_HAS_GETSYSTEMTIMEASFILETIME # include "../test/boost_has_getsystemtimeasfiletime.ipp" namespace test = boost_has_getsystemtimeasfiletime; #endif -#ifdef TEST_BOOST_NO_CXX11_ADDRESSOF -# include "../test/boost_no_cxx11_addressof.ipp" -namespace test = boost_no_cxx11_addressof; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_FUNCTIONAL -# include "../test/boost_no_cxx_hdr_functional.ipp" -namespace test = boost_no_cxx11_hdr_functional; +#ifdef TEST_BOOST_HAS_GETTIMEOFDAY +# include "../test/boost_has_gettimeofday.ipp" +namespace test = boost_has_gettimeofday; #endif #ifdef TEST_BOOST_HAS_HASH # include "../test/boost_has_hash.ipp" namespace test = boost_has_hash; #endif +#ifdef TEST_BOOST_HAS_INT128 +# include "../test/boost_has_int128.ipp" +namespace test = boost_has_int128; +#endif +#ifdef TEST_BOOST_HAS_LOG1P +# include "../test/boost_has_log1p.ipp" +namespace test = boost_has_log1p; +#endif +#ifdef TEST_BOOST_HAS_LONG_LONG +# include "../test/boost_has_long_long.ipp" +namespace test = boost_has_long_long; +#endif #ifdef TEST_BOOST_HAS_MACRO_USE_FACET # include "../test/boost_has_macro_use_facet.ipp" namespace test = boost_has_macro_use_facet; #endif -#ifdef TEST_BOOST_NO_CXX11_DECLTYPE_N3276 -# include "../test/boost_no_decltype_n3276.ipp" -namespace test = boost_no_cxx11_decltype_n3276; +#ifdef TEST_BOOST_HAS_MS_INT64 +# include "../test/boost_has_ms_int64.ipp" +namespace test = boost_has_ms_int64; #endif -#ifdef TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -# include "../test/boost_no_tem_local_classes.ipp" -namespace test = boost_no_cxx11_local_class_template_parameters; +#ifdef TEST_BOOST_HAS_NANOSLEEP +# include "../test/boost_has_nanosleep.ipp" +namespace test = boost_has_nanosleep; #endif -#ifdef TEST_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS -# include "../test/boost_no_mem_func_spec.ipp" -namespace test = boost_no_member_function_specializations; +#ifdef TEST_BOOST_HAS_NL_TYPES_H +# include "../test/boost_has_nl_types_h.ipp" +namespace test = boost_has_nl_types_h; #endif -#ifdef TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS -# include "../test/boost_no_part_spec_def_args.ipp" -namespace test = boost_no_partial_specialization_implicit_default_args; +#ifdef TEST_BOOST_HAS_NRVO +# include "../test/boost_has_nrvo.ipp" +namespace test = boost_has_nrvo; #endif -#ifdef TEST_BOOST_NO_STD_WSTREAMBUF -# include "../test/boost_no_std_wstreambuf.ipp" -namespace test = boost_no_std_wstreambuf; +#ifdef TEST_BOOST_HAS_PARTIAL_STD_ALLOCATOR +# include "../test/boost_has_part_alloc.ipp" +namespace test = boost_has_partial_std_allocator; #endif -#ifdef TEST_BOOST_NO_LONG_LONG -# include "../test/boost_no_long_long.ipp" -namespace test = boost_no_long_long; +#ifdef TEST_BOOST_HAS_PTHREADS +# include "../test/boost_has_pthreads.ipp" +namespace test = boost_has_pthreads; +#endif +#ifdef TEST_BOOST_HAS_PTHREAD_DELAY_NP +# include "../test/boost_has_pthread_delay_np.ipp" +namespace test = boost_has_pthread_delay_np; +#endif +#ifdef TEST_BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE +# include "../test/boost_has_pthread_ma_st.ipp" +namespace test = boost_has_pthread_mutexattr_settype; +#endif +#ifdef TEST_BOOST_HAS_PTHREAD_YIELD +# include "../test/boost_has_pthread_yield.ipp" +namespace test = boost_has_pthread_yield; +#endif +#ifdef TEST_BOOST_HAS_RVALUE_REFS +# include "../test/boost_has_rvalue_refs.ipp" +namespace test = boost_has_rvalue_refs; +#endif +#ifdef TEST_BOOST_HAS_SCHED_YIELD +# include "../test/boost_has_sched_yield.ipp" +namespace test = boost_has_sched_yield; +#endif +#ifdef TEST_BOOST_HAS_SGI_TYPE_TRAITS +# include "../test/boost_has_sgi_type_traits.ipp" +namespace test = boost_has_sgi_type_traits; +#endif +#ifdef TEST_BOOST_HAS_SIGACTION +# include "../test/boost_has_sigaction.ipp" +namespace test = boost_has_sigaction; +#endif +#ifdef TEST_BOOST_HAS_SLIST +# include "../test/boost_has_slist.ipp" +namespace test = boost_has_slist; +#endif +#ifdef TEST_BOOST_HAS_STATIC_ASSERT +# include "../test/boost_has_static_assert.ipp" +namespace test = boost_has_static_assert; +#endif +#ifdef TEST_BOOST_HAS_STDINT_H +# include "../test/boost_has_stdint_h.ipp" +namespace test = boost_has_stdint_h; +#endif +#ifdef TEST_BOOST_HAS_STLP_USE_FACET +# include "../test/boost_has_stlp_use_facet.ipp" +namespace test = boost_has_stlp_use_facet; +#endif +#ifdef TEST_BOOST_HAS_TR1_ARRAY +# include "../test/boost_has_tr1_array.ipp" +namespace test = boost_has_tr1_array; +#endif +#ifdef TEST_BOOST_HAS_TR1_BIND +# include "../test/boost_has_tr1_bind.ipp" +namespace test = boost_has_tr1_bind; +#endif +#ifdef TEST_BOOST_HAS_TR1_COMPLEX_OVERLOADS +# include "../test/boost_has_tr1_complex_over.ipp" +namespace test = boost_has_tr1_complex_overloads; +#endif +#ifdef TEST_BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG +# include "../test/boost_has_tr1_complex_trig.ipp" +namespace test = boost_has_tr1_complex_inverse_trig; +#endif +#ifdef TEST_BOOST_HAS_TR1_FUNCTION +# include "../test/boost_has_tr1_function.ipp" +namespace test = boost_has_tr1_function; +#endif +#ifdef TEST_BOOST_HAS_TR1_HASH +# include "../test/boost_has_tr1_hash.ipp" +namespace test = boost_has_tr1_hash; +#endif +#ifdef TEST_BOOST_HAS_TR1_MEM_FN +# include "../test/boost_has_tr1_mem_fn.ipp" +namespace test = boost_has_tr1_mem_fn; +#endif +#ifdef TEST_BOOST_HAS_TR1_RANDOM +# include "../test/boost_has_tr1_random.ipp" +namespace test = boost_has_tr1_random; +#endif +#ifdef TEST_BOOST_HAS_TR1_REFERENCE_WRAPPER +# include "../test/boost_has_tr1_ref_wrap.ipp" +namespace test = boost_has_tr1_reference_wrapper; +#endif +#ifdef TEST_BOOST_HAS_TR1_REGEX +# include "../test/boost_has_tr1_regex.ipp" +namespace test = boost_has_tr1_regex; +#endif +#ifdef TEST_BOOST_HAS_TR1_RESULT_OF +# include "../test/boost_has_tr1_result_of.ipp" +namespace test = boost_has_tr1_result_of; +#endif +#ifdef TEST_BOOST_HAS_TR1_SHARED_PTR +# include "../test/boost_has_tr1_shared_ptr.ipp" +namespace test = boost_has_tr1_shared_ptr; +#endif +#ifdef TEST_BOOST_HAS_TR1_TUPLE +# include "../test/boost_has_tr1_tuple.ipp" +namespace test = boost_has_tr1_tuple; +#endif +#ifdef TEST_BOOST_HAS_TR1_TYPE_TRAITS +# include "../test/boost_has_tr1_type_traits.ipp" +namespace test = boost_has_tr1_type_traits; #endif #ifdef TEST_BOOST_HAS_TR1_UNORDERED_MAP # include "../test/boost_has_tr1_unordered_map.ipp" @@ -169,457 +193,545 @@ namespace test = boost_has_tr1_unordered_map; # include "../test/boost_has_tr1_unordered_set.ipp" namespace test = boost_has_tr1_unordered_set; #endif -#ifdef TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE -# include "../test/boost_no_extern_template.ipp" -namespace test = boost_no_cxx11_extern_template; +#ifdef TEST_BOOST_HAS_TR1_UTILITY +# include "../test/boost_has_tr1_utility.ipp" +namespace test = boost_has_tr1_utility; #endif -#ifdef TEST_BOOST_NO_CXX11_CONSTEXPR -# include "../test/boost_no_constexpr.ipp" -namespace test = boost_no_cxx11_constexpr; -#endif -#ifdef TEST_BOOST_NO_INTRINSIC_WCHAR_T -# include "../test/boost_no_wchar_t.ipp" -namespace test = boost_no_intrinsic_wchar_t; -#endif -#ifdef TEST_BOOST_HAS_SGI_TYPE_TRAITS -# include "../test/boost_has_sgi_type_traits.ipp" -namespace test = boost_has_sgi_type_traits; -#endif -#ifdef TEST_BOOST_NO_OPERATORS_IN_NAMESPACE -# include "../test/boost_no_ops_in_namespace.ipp" -namespace test = boost_no_operators_in_namespace; -#endif -#ifdef TEST_BOOST_NO_CXX11_DELETED_FUNCTIONS -# include "../test/boost_no_deleted_functions.ipp" -namespace test = boost_no_cxx11_deleted_functions; -#endif -#ifdef TEST_BOOST_NO_IOSFWD -# include "../test/boost_no_iosfwd.ipp" -namespace test = boost_no_iosfwd; -#endif -#ifdef TEST_BOOST_HAS_LONG_LONG -# include "../test/boost_has_long_long.ipp" -namespace test = boost_has_long_long; -#endif -#ifdef TEST_BOOST_NO_CXX11_NUMERIC_LIMITS -# include "../test/boost_no_cxx11_numeric_limits.ipp" -namespace test = boost_no_cxx11_numeric_limits; -#endif -#ifdef TEST_BOOST_NO_UNREACHABLE_RETURN_DETECTION -# include "../test/boost_no_ret_det.ipp" -namespace test = boost_no_unreachable_return_detection; -#endif -#ifdef TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES -# include "../test/boost_no_variadic_templates.ipp" -namespace test = boost_no_cxx11_variadic_templates; -#endif -#ifdef TEST_BOOST_HAS_WINTHREADS -# include "../test/boost_has_winthreads.ipp" -namespace test = boost_has_winthreads; -#endif -#ifdef TEST_BOOST_NO_CXX11_NOEXCEPT -# include "../test/boost_no_noexcept.ipp" -namespace test = boost_no_cxx11_noexcept; -#endif -#ifdef TEST_BOOST_NO_CV_VOID_SPECIALIZATIONS -# include "../test/boost_no_cv_void_spec.ipp" -namespace test = boost_no_cv_void_specializations; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_INITIALIZER_LIST -# include "../test/boost_no_cxx11_hdr_initializer_list.ipp" -namespace test = boost_no_cxx11_hdr_initializer_list; -#endif -#ifdef TEST_BOOST_HAS_TR1_COMPLEX_OVERLOADS -# include "../test/boost_has_tr1_complex_over.ipp" -namespace test = boost_has_tr1_complex_overloads; -#endif -#ifdef TEST_BOOST_HAS_NL_TYPES_H -# include "../test/boost_has_nl_types_h.ipp" -namespace test = boost_has_nl_types_h; -#endif -#ifdef TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS -# include "../test/boost_no_function_template_default_args.ipp" -namespace test = boost_no_cxx11_function_template_default_args; -#endif -#ifdef TEST_BOOST_HAS_TWO_ARG_USE_FACET -# include "../test/boost_has_2arg_use_facet.ipp" -namespace test = boost_has_two_arg_use_facet; -#endif -#ifdef TEST_BOOST_MSVC6_MEMBER_TEMPLATES -# include "../test/boost_has_vc6_mem_templ.ipp" -namespace test = boost_msvc6_member_templates; -#endif -#ifdef TEST_BOOST_NO_CXX11_LAMBDAS -# include "../test/boost_no_lambdas.ipp" -namespace test = boost_no_cxx11_lambdas; -#endif -#ifdef TEST_BOOST_HAS_LOG1P -# include "../test/boost_has_log1p.ipp" -namespace test = boost_has_log1p; -#endif -#ifdef TEST_BOOST_HAS_TR1_ARRAY -# include "../test/boost_has_tr1_array.ipp" -namespace test = boost_has_tr1_array; -#endif -#ifdef TEST_BOOST_HAS_NRVO -# include "../test/boost_has_nrvo.ipp" -namespace test = boost_has_nrvo; -#endif -#ifdef TEST_BOOST_NO_CXX11_DEFAULTED_FUNCTIONS -# include "../test/boost_no_defaulted_functions.ipp" -namespace test = boost_no_cxx11_defaulted_functions; -#endif -#ifdef TEST_BOOST_NO_CXX11_CHAR32_T -# include "../test/boost_no_char32_t.ipp" -namespace test = boost_no_cxx11_char32_t; -#endif -#ifdef TEST_BOOST_NO_EXCEPTIONS -# include "../test/boost_no_exceptions.ipp" -namespace test = boost_no_exceptions; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_FUTURE -# include "../test/boost_no_cxx11_hdr_future.ipp" -namespace test = boost_no_cxx11_hdr_future; -#endif -#ifdef TEST_BOOST_HAS_SIGACTION -# include "../test/boost_has_sigaction.ipp" -namespace test = boost_has_sigaction; -#endif -#ifdef TEST_BOOST_HAS_RVALUE_REFS -# include "../test/boost_has_rvalue_refs.ipp" -namespace test = boost_has_rvalue_refs; -#endif -#ifdef TEST_BOOST_NO_CV_SPECIALIZATIONS -# include "../test/boost_no_cv_spec.ipp" -namespace test = boost_no_cv_specializations; -#endif -#ifdef TEST_BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG -# include "../test/boost_has_tr1_complex_trig.ipp" -namespace test = boost_has_tr1_complex_inverse_trig; -#endif -#ifdef TEST_BOOST_NO_STD_LOCALE -# include "../test/boost_no_std_locale.ipp" -namespace test = boost_no_std_locale; -#endif -#ifdef TEST_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS -# include "../test/boost_no_dep_val_param.ipp" -namespace test = boost_no_dependent_types_in_template_value_parameters; -#endif -#ifdef TEST_BOOST_NO_USING_TEMPLATE -# include "../test/boost_no_using_template.ipp" -namespace test = boost_no_using_template; -#endif -#ifdef TEST_BOOST_NO_LIMITS -# include "../test/boost_no_limits.ipp" -namespace test = boost_no_limits; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_THREAD -# include "../test/boost_no_cxx11_hdr_thread.ipp" -namespace test = boost_no_cxx11_hdr_thread; -#endif -#ifdef TEST_BOOST_NO_RTTI -# include "../test/boost_no_rtti.ipp" -namespace test = boost_no_rtti; -#endif -#ifdef TEST_BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS -# include "../test/boost_no_fixed_len_variadic_templates.ipp" -namespace test = boost_no_cxx11_fixed_length_variadic_template_expansion_packs; -#endif -#ifdef TEST_BOOST_NO_LONG_LONG_NUMERIC_LIMITS -# include "../test/boost_no_ll_limits.ipp" -namespace test = boost_no_long_long_numeric_limits; -#endif -#ifdef TEST_BOOST_NO_CWCTYPE -# include "../test/boost_no_cwctype.ipp" -namespace test = boost_no_cwctype; -#endif -#ifdef TEST_BOOST_HAS_SLIST -# include "../test/boost_has_slist.ipp" -namespace test = boost_has_slist; -#endif -#ifdef TEST_BOOST_HAS_TR1_TYPE_TRAITS -# include "../test/boost_has_tr1_type_traits.ipp" -namespace test = boost_has_tr1_type_traits; -#endif -#ifdef TEST_BOOST_HAS_GETTIMEOFDAY -# include "../test/boost_has_gettimeofday.ipp" -namespace test = boost_has_gettimeofday; -#endif -#ifdef TEST_BOOST_HAS_PTHREADS -# include "../test/boost_has_pthreads.ipp" -namespace test = boost_has_pthreads; -#endif -#ifdef TEST_BOOST_DEDUCED_TYPENAME -# include "../test/boost_no_ded_typename.ipp" -namespace test = boost_deduced_typename; -#endif -#ifdef TEST_BOOST_HAS_CLOCK_GETTIME -# include "../test/boost_has_clock_gettime.ipp" -namespace test = boost_has_clock_gettime; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_CONDITION_VARIABLE -# include "../test/boost_no_cxx11_hdr_condition_variable.ipp" -namespace test = boost_no_cxx11_hdr_condition_variable; -#endif -#ifdef TEST_BOOST_NO_STRINGSTREAM -# include "../test/boost_no_sstream.ipp" -namespace test = boost_no_stringstream; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_SYSTEM_ERROR -# include "../test/boost_no_cxx11_hdr_system_error.ipp" -namespace test = boost_no_cxx11_hdr_system_error; -#endif -#ifdef TEST_BOOST_HAS_BETHREADS -# include "../test/boost_has_bethreads.ipp" -namespace test = boost_has_bethreads; -#endif -#ifdef TEST_BOOST_NO_CXX11_TRAILING_RESULT_TYPES -# include "../test/boost_no_cxx11_trailing_result_types.ipp" -namespace test = boost_no_cxx11_trailing_result_types; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_ATOMIC -# include "../test/boost_no_cxx11_hdr_atomic.ipp" -namespace test = boost_no_cxx11_hdr_atomic; -#endif -#ifdef TEST_BOOST_HAS_TR1_SHARED_PTR -# include "../test/boost_has_tr1_shared_ptr.ipp" -namespace test = boost_has_tr1_shared_ptr; -#endif -#ifdef TEST_BOOST_NO_CXX11_STD_ALIGN -# include "../test/boost_no_cxx11_std_align.ipp" -namespace test = boost_no_cxx11_std_align; -#endif -#ifdef TEST_BOOST_NO_CWCHAR -# include "../test/boost_no_cwchar.ipp" -namespace test = boost_no_cwchar; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_MUTEX -# include "../test/boost_no_cxx11_hdr_mutex.ipp" -namespace test = boost_no_cxx11_hdr_mutex; -#endif -#ifdef TEST_BOOST_NO_DEPENDENT_NESTED_DERIVATIONS -# include "../test/boost_no_dep_nested_class.ipp" -namespace test = boost_no_dependent_nested_derivations; -#endif -#ifdef TEST_BOOST_NO_CXX11_REF_QUALIFIERS -# include "../test/boost_no_cxx11_ref_qualifiers.ipp" -namespace test = boost_no_cxx11_ref_qualifiers; -#endif -#ifdef TEST_BOOST_HAS_TR1_BIND -# include "../test/boost_has_tr1_bind.ipp" -namespace test = boost_has_tr1_bind; -#endif -#ifdef TEST_BOOST_MSVC_STD_ITERATOR -# include "../test/boost_has_vc_iterator.ipp" -namespace test = boost_msvc_std_iterator; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_CHRONO -# include "../test/boost_no_cxx11_hdr_chrono.ipp" -namespace test = boost_no_cxx11_hdr_chrono; -#endif -#ifdef TEST_BOOST_NO_STD_USE_FACET -# include "../test/boost_no_std_use_facet.ipp" -namespace test = boost_no_std_use_facet; -#endif -#ifdef TEST_BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS -# include "../test/boost_no_iter_construct.ipp" -namespace test = boost_no_templated_iterator_constructors; -#endif -#ifdef TEST_BOOST_HAS_STLP_USE_FACET -# include "../test/boost_has_stlp_use_facet.ipp" -namespace test = boost_has_stlp_use_facet; -#endif -#ifdef TEST_BOOST_NO_STD_DISTANCE -# include "../test/boost_no_std_distance.ipp" -namespace test = boost_no_std_distance; -#endif -#ifdef TEST_BOOST_NO_TEMPLATE_TEMPLATES -# include "../test/boost_no_template_template.ipp" -namespace test = boost_no_template_templates; -#endif -#ifdef TEST_BOOST_NO_SFINAE_EXPR -# include "../test/boost_no_sfinae_expr.ipp" -namespace test = boost_no_sfinae_expr; +#ifdef TEST_BOOST_HAS_UNISTD_H +# include "../test/boost_has_unistd_h.ipp" +namespace test = boost_has_unistd_h; #endif #ifdef TEST_BOOST_HAS_VARIADIC_TMPL # include "../test/boost_has_variadic_tmpl.ipp" namespace test = boost_has_variadic_tmpl; #endif -#ifdef TEST_BOOST_HAS_TR1_TUPLE -# include "../test/boost_has_tr1_tuple.ipp" -namespace test = boost_has_tr1_tuple; +#ifdef TEST_BOOST_MSVC6_MEMBER_TEMPLATES +# include "../test/boost_has_vc6_mem_templ.ipp" +namespace test = boost_msvc6_member_templates; #endif -#ifdef TEST_BOOST_HAS_STDINT_H -# include "../test/boost_has_stdint_h.ipp" -namespace test = boost_has_stdint_h; +#ifdef TEST_BOOST_MSVC_STD_ITERATOR +# include "../test/boost_has_vc_iterator.ipp" +namespace test = boost_msvc_std_iterator; #endif -#ifdef TEST_BOOST_NO_CXX11_CHAR16_T -# include "../test/boost_no_char16_t.ipp" -namespace test = boost_no_cxx11_char16_t; -#endif -#ifdef TEST_BOOST_NO_CXX11_RANGE_BASED_FOR -# include "../test/boost_no_range_based_for.ipp" -namespace test = boost_no_cxx11_range_based_for; -#endif -#ifdef TEST_BOOST_NO_VOID_RETURNS -# include "../test/boost_no_void_returns.ipp" -namespace test = boost_no_void_returns; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_CODECVT -# include "../test/boost_no_cxx11_hdr_codecvt.ipp" -namespace test = boost_no_cxx11_hdr_codecvt; -#endif -#ifdef TEST_BOOST_NO_AUTO_PTR -# include "../test/boost_no_auto_ptr.ipp" -namespace test = boost_no_auto_ptr; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_REGEX -# include "../test/boost_no_cxx11_hdr_regex.ipp" -namespace test = boost_no_cxx11_hdr_regex; -#endif -#ifdef TEST_BOOST_NO_STD_MESSAGES -# include "../test/boost_no_std_messages.ipp" -namespace test = boost_no_std_messages; -#endif -#ifdef TEST_BOOST_BCB_PARTIAL_SPECIALIZATION_BUG -# include "../test/boost_no_bcb_partial_spec.ipp" -namespace test = boost_bcb_partial_specialization_bug; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_UNORDERED_SET -# include "../test/boost_no_cxx11_hdr_unordered_set.ipp" -namespace test = boost_no_cxx11_hdr_unordered_set; -#endif -#ifdef TEST_BOOST_HAS_TR1_FUNCTION -# include "../test/boost_has_tr1_function.ipp" -namespace test = boost_has_tr1_function; -#endif -#ifdef TEST_BOOST_HAS_TR1_REFERENCE_WRAPPER -# include "../test/boost_has_tr1_ref_wrap.ipp" -namespace test = boost_has_tr1_reference_wrapper; -#endif -#ifdef TEST_BOOST_HAS_STATIC_ASSERT -# include "../test/boost_has_static_assert.ipp" -namespace test = boost_has_static_assert; -#endif -#ifdef TEST_BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS -# include "../test/boost_no_auto_multidecl.ipp" -namespace test = boost_no_cxx11_auto_multideclarations; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_TUPLE -# include "../test/boost_no_cxx11_hdr_tuple.ipp" -namespace test = boost_no_cxx11_hdr_tuple; -#endif -#ifdef TEST_BOOST_HAS_SCHED_YIELD -# include "../test/boost_has_sched_yield.ipp" -namespace test = boost_has_sched_yield; -#endif -#ifdef TEST_BOOST_NO_CXX11_SMART_PTR -# include "../test/boost_no_cxx11_smart_ptr.ipp" -namespace test = boost_no_cxx11_smart_ptr; +#ifdef TEST_BOOST_HAS_WINTHREADS +# include "../test/boost_has_winthreads.ipp" +namespace test = boost_has_winthreads; #endif #ifdef TEST_BOOST_NO_ADL_BARRIER # include "../test/boost_no_adl_barrier.ipp" namespace test = boost_no_adl_barrier; #endif -#ifdef TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -# include "../test/boost_no_explicit_cvt_ops.ipp" -namespace test = boost_no_cxx11_explicit_conversion_operators; +#ifdef TEST_BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP +# include "../test/boost_no_arg_dep_lookup.ipp" +namespace test = boost_no_argument_dependent_lookup; +#endif +#ifdef TEST_BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS +# include "../test/boost_no_array_type_spec.ipp" +namespace test = boost_no_array_type_specializations; #endif #ifdef TEST_BOOST_NO_CXX11_AUTO_DECLARATIONS # include "../test/boost_no_auto_declarations.ipp" namespace test = boost_no_cxx11_auto_declarations; #endif -#ifdef TEST_BOOST_NO_CXX11_UNICODE_LITERALS -# include "../test/boost_no_unicode_literals.ipp" -namespace test = boost_no_cxx11_unicode_literals; +#ifdef TEST_BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS +# include "../test/boost_no_auto_multidecl.ipp" +namespace test = boost_no_cxx11_auto_multideclarations; #endif -#ifdef TEST_BOOST_HAS_TR1_HASH -# include "../test/boost_has_tr1_hash.ipp" -namespace test = boost_has_tr1_hash; +#ifdef TEST_BOOST_NO_AUTO_PTR +# include "../test/boost_no_auto_ptr.ipp" +namespace test = boost_no_auto_ptr; #endif -#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS -# include "../test/boost_no_mem_templ_frnds.ipp" -namespace test = boost_no_member_template_friends; +#ifdef TEST_BOOST_BCB_PARTIAL_SPECIALIZATION_BUG +# include "../test/boost_no_bcb_partial_spec.ipp" +namespace test = boost_bcb_partial_specialization_bug; #endif -#ifdef TEST_BOOST_NO_CXX11_SCOPED_ENUMS -# include "../test/boost_no_scoped_enums.ipp" -namespace test = boost_no_cxx11_scoped_enums; +#ifdef TEST_BOOST_NO_CXX11_CHAR16_T +# include "../test/boost_no_char16_t.ipp" +namespace test = boost_no_cxx11_char16_t; #endif -#ifdef TEST_BOOST_HAS_MS_INT64 -# include "../test/boost_has_ms_int64.ipp" -namespace test = boost_has_ms_int64; +#ifdef TEST_BOOST_NO_CXX11_CHAR32_T +# include "../test/boost_no_char32_t.ipp" +namespace test = boost_no_cxx11_char32_t; #endif -#ifdef TEST_BOOST_NO_CXX11_RAW_LITERALS -# include "../test/boost_no_raw_literals.ipp" -namespace test = boost_no_cxx11_raw_literals; +#ifdef TEST_BOOST_NO_COMPLETE_VALUE_INITIALIZATION +# include "../test/boost_no_com_value_init.ipp" +namespace test = boost_no_complete_value_initialization; #endif -#ifdef TEST_BOOST_NO_IOSTREAM -# include "../test/boost_no_iostream.ipp" -namespace test = boost_no_iostream; +#ifdef TEST_BOOST_NO_CXX11_CONSTEXPR +# include "../test/boost_no_constexpr.ipp" +namespace test = boost_no_cxx11_constexpr; +#endif +#ifdef TEST_BOOST_NO_CTYPE_FUNCTIONS +# include "../test/boost_no_ctype_functions.ipp" +namespace test = boost_no_ctype_functions; +#endif +#ifdef TEST_BOOST_NO_CV_SPECIALIZATIONS +# include "../test/boost_no_cv_spec.ipp" +namespace test = boost_no_cv_specializations; +#endif +#ifdef TEST_BOOST_NO_CV_VOID_SPECIALIZATIONS +# include "../test/boost_no_cv_void_spec.ipp" +namespace test = boost_no_cv_void_specializations; +#endif +#ifdef TEST_BOOST_NO_CWCHAR +# include "../test/boost_no_cwchar.ipp" +namespace test = boost_no_cwchar; +#endif +#ifdef TEST_BOOST_NO_CWCTYPE +# include "../test/boost_no_cwctype.ipp" +namespace test = boost_no_cwctype; +#endif +#ifdef TEST_BOOST_NO_CXX11_ADDRESSOF +# include "../test/boost_no_cxx11_addressof.ipp" +namespace test = boost_no_cxx11_addressof; +#endif +#ifdef TEST_BOOST_NO_CXX11_ALIGNAS +# include "../test/boost_no_cxx11_alignas.ipp" +namespace test = boost_no_cxx11_alignas; +#endif +#ifdef TEST_BOOST_NO_CXX11_ALLOCATOR +# include "../test/boost_no_cxx11_allocator.ipp" +namespace test = boost_no_cxx11_allocator; #endif #ifdef TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR # include "../test/boost_no_cxx11_atomic_sp.ipp" namespace test = boost_no_cxx11_atomic_smart_ptr; #endif -#ifdef TEST_BOOST_HAS_EXPM1 -# include "../test/boost_has_expm1.ipp" -namespace test = boost_has_expm1; +#ifdef TEST_BOOST_NO_CXX11_FINAL +# include "../test/boost_no_cxx11_final.ipp" +namespace test = boost_no_cxx11_final; #endif -#ifdef TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION -# include "../test/boost_no_partial_spec.ipp" -namespace test = boost_no_template_partial_specialization; +#ifdef TEST_BOOST_NO_CXX11_HDR_ARRAY +# include "../test/boost_no_cxx11_hdr_array.ipp" +namespace test = boost_no_cxx11_hdr_array; #endif -#ifdef TEST_BOOST_NO_STD_ITERATOR -# include "../test/boost_no_std_iterator.ipp" -namespace test = boost_no_std_iterator; +#ifdef TEST_BOOST_NO_CXX11_HDR_ATOMIC +# include "../test/boost_no_cxx11_hdr_atomic.ipp" +namespace test = boost_no_cxx11_hdr_atomic; #endif -#ifdef TEST_BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE -# include "../test/boost_has_pthread_ma_st.ipp" -namespace test = boost_has_pthread_mutexattr_settype; +#ifdef TEST_BOOST_NO_CXX11_HDR_CHRONO +# include "../test/boost_no_cxx11_hdr_chrono.ipp" +namespace test = boost_no_cxx11_hdr_chrono; #endif -#ifdef TEST_BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP -# include "../test/boost_no_arg_dep_lookup.ipp" -namespace test = boost_no_argument_dependent_lookup; +#ifdef TEST_BOOST_NO_CXX11_HDR_CODECVT +# include "../test/boost_no_cxx11_hdr_codecvt.ipp" +namespace test = boost_no_cxx11_hdr_codecvt; #endif -#ifdef TEST_BOOST_NO_STD_ALLOCATOR -# include "../test/boost_no_std_allocator.ipp" -namespace test = boost_no_std_allocator; +#ifdef TEST_BOOST_NO_CXX11_HDR_CONDITION_VARIABLE +# include "../test/boost_no_cxx11_hdr_condition_variable.ipp" +namespace test = boost_no_cxx11_hdr_condition_variable; #endif -#ifdef TEST_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS -# include "../test/boost_no_function_type_spec.ipp" -namespace test = boost_no_function_type_specializations; +#ifdef TEST_BOOST_NO_CXX11_HDR_FORWARD_LIST +# include "../test/boost_no_cxx11_hdr_forward_list.ipp" +namespace test = boost_no_cxx11_hdr_forward_list; #endif -#ifdef TEST_BOOST_NO_MEMBER_TEMPLATES -# include "../test/boost_no_mem_templates.ipp" -namespace test = boost_no_member_templates; +#ifdef TEST_BOOST_NO_CXX11_HDR_FUTURE +# include "../test/boost_no_cxx11_hdr_future.ipp" +namespace test = boost_no_cxx11_hdr_future; #endif -#ifdef TEST_BOOST_NO_CXX11_STATIC_ASSERT -# include "../test/boost_no_static_assert.ipp" -namespace test = boost_no_cxx11_static_assert; +#ifdef TEST_BOOST_NO_CXX11_HDR_INITIALIZER_LIST +# include "../test/boost_no_cxx11_hdr_initializer_list.ipp" +namespace test = boost_no_cxx11_hdr_initializer_list; #endif -#ifdef TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES -# include "../test/boost_no_template_aliases.ipp" -namespace test = boost_no_cxx11_template_aliases; -#endif -#ifdef TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS -# include "../test/boost_no_exp_func_tem_arg.ipp" -namespace test = boost_no_explicit_function_template_arguments; -#endif -#ifdef TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS -# include "../test/boost_no_i64_limits.ipp" -namespace test = boost_no_ms_int64_numeric_limits; +#ifdef TEST_BOOST_NO_CXX11_HDR_MUTEX +# include "../test/boost_no_cxx11_hdr_mutex.ipp" +namespace test = boost_no_cxx11_hdr_mutex; #endif #ifdef TEST_BOOST_NO_CXX11_HDR_RANDOM # include "../test/boost_no_cxx11_hdr_random.ipp" namespace test = boost_no_cxx11_hdr_random; #endif +#ifdef TEST_BOOST_NO_CXX11_HDR_RATIO +# include "../test/boost_no_cxx11_hdr_ratio.ipp" +namespace test = boost_no_cxx11_hdr_ratio; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_REGEX +# include "../test/boost_no_cxx11_hdr_regex.ipp" +namespace test = boost_no_cxx11_hdr_regex; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_SYSTEM_ERROR +# include "../test/boost_no_cxx11_hdr_system_error.ipp" +namespace test = boost_no_cxx11_hdr_system_error; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_THREAD +# include "../test/boost_no_cxx11_hdr_thread.ipp" +namespace test = boost_no_cxx11_hdr_thread; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_TUPLE +# include "../test/boost_no_cxx11_hdr_tuple.ipp" +namespace test = boost_no_cxx11_hdr_tuple; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_TYPEINDEX +# include "../test/boost_no_cxx11_hdr_typeindex.ipp" +namespace test = boost_no_cxx11_hdr_typeindex; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS +# include "../test/boost_no_cxx11_hdr_type_traits.ipp" +namespace test = boost_no_cxx11_hdr_type_traits; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP +# include "../test/boost_no_cxx11_hdr_unordered_map.ipp" +namespace test = boost_no_cxx11_hdr_unordered_map; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_UNORDERED_SET +# include "../test/boost_no_cxx11_hdr_unordered_set.ipp" +namespace test = boost_no_cxx11_hdr_unordered_set; +#endif +#ifdef TEST_BOOST_NO_CXX11_INLINE_NAMESPACES +# include "../test/boost_no_cxx11_inline_namespaces.ipp" +namespace test = boost_no_cxx11_inline_namespaces; +#endif +#ifdef TEST_BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS +# include "../test/boost_no_cxx11_non_pub_def_fun.ipp" +namespace test = boost_no_cxx11_non_public_defaulted_functions; +#endif +#ifdef TEST_BOOST_NO_CXX11_NUMERIC_LIMITS +# include "../test/boost_no_cxx11_numeric_limits.ipp" +namespace test = boost_no_cxx11_numeric_limits; +#endif +#ifdef TEST_BOOST_NO_CXX11_REF_QUALIFIERS +# include "../test/boost_no_cxx11_ref_qualifiers.ipp" +namespace test = boost_no_cxx11_ref_qualifiers; +#endif +#ifdef TEST_BOOST_NO_CXX11_SMART_PTR +# include "../test/boost_no_cxx11_smart_ptr.ipp" +namespace test = boost_no_cxx11_smart_ptr; +#endif +#ifdef TEST_BOOST_NO_CXX11_STD_ALIGN +# include "../test/boost_no_cxx11_std_align.ipp" +namespace test = boost_no_cxx11_std_align; +#endif +#ifdef TEST_BOOST_NO_CXX11_TRAILING_RESULT_TYPES +# include "../test/boost_no_cxx11_trailing_result_types.ipp" +namespace test = boost_no_cxx11_trailing_result_types; +#endif +#ifdef TEST_BOOST_NO_CXX11_USER_DEFINED_LITERALS +# include "../test/boost_no_cxx11_user_lit.ipp" +namespace test = boost_no_cxx11_user_defined_literals; +#endif +#ifdef TEST_BOOST_NO_CXX14_BINARY_LITERALS +# include "../test/boost_no_cxx14_binary_literals.ipp" +namespace test = boost_no_cxx14_binary_literals; +#endif +#ifdef TEST_BOOST_NO_CXX14_CONSTEXPR +# include "../test/boost_no_cxx14_constexpr.ipp" +namespace test = boost_no_cxx14_constexpr; +#endif +#ifdef TEST_BOOST_NO_CXX14_DECLTYPE_AUTO +# include "../test/boost_no_cxx14_decltype_auto.ipp" +namespace test = boost_no_cxx14_decltype_auto; +#endif +#ifdef TEST_BOOST_NO_CXX14_DIGIT_SEPARATOR +# include "../test/boost_no_cxx14_digit_separator.ipp" +namespace test = boost_no_cxx14_digit_separator; +#endif +#ifdef TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS +# include "../test/boost_no_cxx14_generic_lambda.ipp" +namespace test = boost_no_cxx14_generic_lambdas; +#endif +#ifdef TEST_BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +# include "../test/boost_no_cxx14_lambda_capture.ipp" +namespace test = boost_no_cxx14_initialized_lambda_captures; +#endif +#ifdef TEST_BOOST_NO_CXX14_AGGREGATE_NSDMI +# include "../test/boost_no_cxx14_member_init.ipp" +namespace test = boost_no_cxx14_aggregate_nsdmi; +#endif +#ifdef TEST_BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +# include "../test/boost_no_cxx14_return_type_ded.ipp" +namespace test = boost_no_cxx14_return_type_deduction; +#endif +#ifdef TEST_BOOST_NO_CXX14_VARIABLE_TEMPLATES +# include "../test/boost_no_cxx14_var_templ.ipp" +namespace test = boost_no_cxx14_variable_templates; +#endif +#ifdef TEST_BOOST_NO_CXX11_HDR_FUNCTIONAL +# include "../test/boost_no_cxx_hdr_functional.ipp" +namespace test = boost_no_cxx11_hdr_functional; +#endif +#ifdef TEST_BOOST_NO_CXX11_DECLTYPE +# include "../test/boost_no_decltype.ipp" +namespace test = boost_no_cxx11_decltype; +#endif +#ifdef TEST_BOOST_NO_CXX11_DECLTYPE_N3276 +# include "../test/boost_no_decltype_n3276.ipp" +namespace test = boost_no_cxx11_decltype_n3276; +#endif +#ifdef TEST_BOOST_DEDUCED_TYPENAME +# include "../test/boost_no_ded_typename.ipp" +namespace test = boost_deduced_typename; +#endif +#ifdef TEST_BOOST_NO_CXX11_DEFAULTED_FUNCTIONS +# include "../test/boost_no_defaulted_functions.ipp" +namespace test = boost_no_cxx11_defaulted_functions; +#endif +#ifdef TEST_BOOST_NO_CXX11_DELETED_FUNCTIONS +# include "../test/boost_no_deleted_functions.ipp" +namespace test = boost_no_cxx11_deleted_functions; +#endif +#ifdef TEST_BOOST_NO_DEPENDENT_NESTED_DERIVATIONS +# include "../test/boost_no_dep_nested_class.ipp" +namespace test = boost_no_dependent_nested_derivations; +#endif +#ifdef TEST_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS +# include "../test/boost_no_dep_val_param.ipp" +namespace test = boost_no_dependent_types_in_template_value_parameters; +#endif +#ifdef TEST_BOOST_NO_EXCEPTIONS +# include "../test/boost_no_exceptions.ipp" +namespace test = boost_no_exceptions; +#endif +#ifdef TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE +# include "../test/boost_no_excep_std.ipp" +namespace test = boost_no_exception_std_namespace; +#endif +#ifdef TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +# include "../test/boost_no_explicit_cvt_ops.ipp" +namespace test = boost_no_cxx11_explicit_conversion_operators; +#endif +#ifdef TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS +# include "../test/boost_no_exp_func_tem_arg.ipp" +namespace test = boost_no_explicit_function_template_arguments; +#endif +#ifdef TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE +# include "../test/boost_no_extern_template.ipp" +namespace test = boost_no_cxx11_extern_template; +#endif +#ifdef TEST_BOOST_NO_FENV_H +# include "../test/boost_no_fenv_h.ipp" +namespace test = boost_no_fenv_h; +#endif +#ifdef TEST_BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS +# include "../test/boost_no_fixed_len_variadic_templates.ipp" +namespace test = boost_no_cxx11_fixed_length_variadic_template_expansion_packs; +#endif +#ifdef TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS +# include "../test/boost_no_function_template_default_args.ipp" +namespace test = boost_no_cxx11_function_template_default_args; +#endif +#ifdef TEST_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS +# include "../test/boost_no_function_type_spec.ipp" +namespace test = boost_no_function_type_specializations; +#endif #ifdef TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING # include "../test/boost_no_func_tmp_order.ipp" namespace test = boost_no_function_template_ordering; #endif -#ifdef TEST_BOOST_HAS_PARTIAL_STD_ALLOCATOR -# include "../test/boost_has_part_alloc.ipp" -namespace test = boost_has_partial_std_allocator; +#ifdef TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS +# include "../test/boost_no_i64_limits.ipp" +namespace test = boost_no_ms_int64_numeric_limits; +#endif +#ifdef TEST_BOOST_NO_INCLASS_MEMBER_INITIALIZATION +# include "../test/boost_no_inline_memb_init.ipp" +namespace test = boost_no_inclass_member_initialization; +#endif +#ifdef TEST_BOOST_NO_INTEGRAL_INT64_T +# include "../test/boost_no_integral_int64_t.ipp" +namespace test = boost_no_integral_int64_t; +#endif +#ifdef TEST_BOOST_NO_IOSFWD +# include "../test/boost_no_iosfwd.ipp" +namespace test = boost_no_iosfwd; +#endif +#ifdef TEST_BOOST_NO_IOSTREAM +# include "../test/boost_no_iostream.ipp" +namespace test = boost_no_iostream; +#endif +#ifdef TEST_BOOST_NO_IS_ABSTRACT +# include "../test/boost_no_is_abstract.ipp" +namespace test = boost_no_is_abstract; +#endif +#ifdef TEST_BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS +# include "../test/boost_no_iter_construct.ipp" +namespace test = boost_no_templated_iterator_constructors; +#endif +#ifdef TEST_BOOST_NO_CXX11_LAMBDAS +# include "../test/boost_no_lambdas.ipp" +namespace test = boost_no_cxx11_lambdas; +#endif +#ifdef TEST_BOOST_NO_LIMITS +# include "../test/boost_no_limits.ipp" +namespace test = boost_no_limits; +#endif +#ifdef TEST_BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS +# include "../test/boost_no_limits_const_exp.ipp" +namespace test = boost_no_limits_compile_time_constants; +#endif +#ifdef TEST_BOOST_NO_LONG_LONG_NUMERIC_LIMITS +# include "../test/boost_no_ll_limits.ipp" +namespace test = boost_no_long_long_numeric_limits; +#endif +#ifdef TEST_BOOST_NO_LONG_LONG +# include "../test/boost_no_long_long.ipp" +namespace test = boost_no_long_long; +#endif +#ifdef TEST_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS +# include "../test/boost_no_mem_func_spec.ipp" +namespace test = boost_no_member_function_specializations; +#endif +#ifdef TEST_BOOST_NO_MEMBER_TEMPLATES +# include "../test/boost_no_mem_templates.ipp" +namespace test = boost_no_member_templates; +#endif +#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS +# include "../test/boost_no_mem_templ_frnds.ipp" +namespace test = boost_no_member_template_friends; +#endif +#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD +# include "../test/boost_no_mem_tem_keyword.ipp" +namespace test = boost_no_member_template_keyword; +#endif +#ifdef TEST_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS +# include "../test/boost_no_mem_tem_pnts.ipp" +namespace test = boost_no_pointer_to_member_template_parameters; +#endif +#ifdef TEST_BOOST_NO_NESTED_FRIENDSHIP +# include "../test/boost_no_nested_friendship.ipp" +namespace test = boost_no_nested_friendship; +#endif +#ifdef TEST_BOOST_NO_CXX11_NOEXCEPT +# include "../test/boost_no_noexcept.ipp" +namespace test = boost_no_cxx11_noexcept; +#endif +#ifdef TEST_BOOST_NO_CXX11_NULLPTR +# include "../test/boost_no_nullptr.ipp" +namespace test = boost_no_cxx11_nullptr; +#endif +#ifdef TEST_BOOST_NO_OPERATORS_IN_NAMESPACE +# include "../test/boost_no_ops_in_namespace.ipp" +namespace test = boost_no_operators_in_namespace; +#endif +#ifdef TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION +# include "../test/boost_no_partial_spec.ipp" +namespace test = boost_no_template_partial_specialization; +#endif +#ifdef TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS +# include "../test/boost_no_part_spec_def_args.ipp" +namespace test = boost_no_partial_specialization_implicit_default_args; +#endif +#ifdef TEST_BOOST_NO_PRIVATE_IN_AGGREGATE +# include "../test/boost_no_priv_aggregate.ipp" +namespace test = boost_no_private_in_aggregate; +#endif +#ifdef TEST_BOOST_NO_POINTER_TO_MEMBER_CONST +# include "../test/boost_no_ptr_mem_const.ipp" +namespace test = boost_no_pointer_to_member_const; +#endif +#ifdef TEST_BOOST_NO_CXX11_RANGE_BASED_FOR +# include "../test/boost_no_range_based_for.ipp" +namespace test = boost_no_cxx11_range_based_for; +#endif +#ifdef TEST_BOOST_NO_CXX11_RAW_LITERALS +# include "../test/boost_no_raw_literals.ipp" +namespace test = boost_no_cxx11_raw_literals; +#endif +#ifdef TEST_BOOST_NO_UNREACHABLE_RETURN_DETECTION +# include "../test/boost_no_ret_det.ipp" +namespace test = boost_no_unreachable_return_detection; +#endif +#ifdef TEST_BOOST_NO_RTTI +# include "../test/boost_no_rtti.ipp" +namespace test = boost_no_rtti; +#endif +#ifdef TEST_BOOST_NO_CXX11_RVALUE_REFERENCES +# include "../test/boost_no_rvalue_references.ipp" +namespace test = boost_no_cxx11_rvalue_references; +#endif +#ifdef TEST_BOOST_NO_CXX11_SCOPED_ENUMS +# include "../test/boost_no_scoped_enums.ipp" +namespace test = boost_no_cxx11_scoped_enums; +#endif +#ifdef TEST_BOOST_NO_SFINAE +# include "../test/boost_no_sfinae.ipp" +namespace test = boost_no_sfinae; +#endif +#ifdef TEST_BOOST_NO_SFINAE_EXPR +# include "../test/boost_no_sfinae_expr.ipp" +namespace test = boost_no_sfinae_expr; +#endif +#ifdef TEST_BOOST_NO_STRINGSTREAM +# include "../test/boost_no_sstream.ipp" +namespace test = boost_no_stringstream; +#endif +#ifdef TEST_BOOST_NO_CXX11_STATIC_ASSERT +# include "../test/boost_no_static_assert.ipp" +namespace test = boost_no_cxx11_static_assert; +#endif +#ifdef TEST_BOOST_NO_STDC_NAMESPACE +# include "../test/boost_no_stdc_namespace.ipp" +namespace test = boost_no_stdc_namespace; +#endif +#ifdef TEST_BOOST_NO_STD_ALLOCATOR +# include "../test/boost_no_std_allocator.ipp" +namespace test = boost_no_std_allocator; +#endif +#ifdef TEST_BOOST_NO_STD_DISTANCE +# include "../test/boost_no_std_distance.ipp" +namespace test = boost_no_std_distance; +#endif +#ifdef TEST_BOOST_NO_STD_ITERATOR +# include "../test/boost_no_std_iterator.ipp" +namespace test = boost_no_std_iterator; +#endif +#ifdef TEST_BOOST_NO_STD_ITERATOR_TRAITS +# include "../test/boost_no_std_iter_traits.ipp" +namespace test = boost_no_std_iterator_traits; +#endif +#ifdef TEST_BOOST_NO_STD_LOCALE +# include "../test/boost_no_std_locale.ipp" +namespace test = boost_no_std_locale; +#endif +#ifdef TEST_BOOST_NO_STD_MESSAGES +# include "../test/boost_no_std_messages.ipp" +namespace test = boost_no_std_messages; +#endif +#ifdef TEST_BOOST_NO_STD_MIN_MAX +# include "../test/boost_no_std_min_max.ipp" +namespace test = boost_no_std_min_max; +#endif +#ifdef TEST_BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN +# include "../test/boost_no_std_oi_assign.ipp" +namespace test = boost_no_std_output_iterator_assign; +#endif +#ifdef TEST_BOOST_NO_STD_TYPEINFO +# include "../test/boost_no_std_typeinfo.ipp" +namespace test = boost_no_std_typeinfo; +#endif +#ifdef TEST_BOOST_NO_STD_USE_FACET +# include "../test/boost_no_std_use_facet.ipp" +namespace test = boost_no_std_use_facet; +#endif +#ifdef TEST_BOOST_NO_STD_WSTREAMBUF +# include "../test/boost_no_std_wstreambuf.ipp" +namespace test = boost_no_std_wstreambuf; +#endif +#ifdef TEST_BOOST_NO_STD_WSTRING +# include "../test/boost_no_std_wstring.ipp" +namespace test = boost_no_std_wstring; +#endif +#ifdef TEST_BOOST_NO_SWPRINTF +# include "../test/boost_no_swprintf.ipp" +namespace test = boost_no_swprintf; +#endif +#ifdef TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES +# include "../test/boost_no_template_aliases.ipp" +namespace test = boost_no_cxx11_template_aliases; +#endif +#ifdef TEST_BOOST_NO_TEMPLATED_IOSTREAMS +# include "../test/boost_no_template_streams.ipp" +namespace test = boost_no_templated_iostreams; +#endif +#ifdef TEST_BOOST_NO_TEMPLATE_TEMPLATES +# include "../test/boost_no_template_template.ipp" +namespace test = boost_no_template_templates; +#endif +#ifdef TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +# include "../test/boost_no_tem_local_classes.ipp" +namespace test = boost_no_cxx11_local_class_template_parameters; +#endif +#ifdef TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP +# include "../test/boost_no_two_phase_lookup.ipp" +namespace test = boost_no_two_phase_name_lookup; #endif #ifdef TEST_BOOST_NO_TYPEID # include "../test/boost_no_typeid.ipp" @@ -629,117 +741,41 @@ namespace test = boost_no_typeid; # include "../test/boost_no_typename_with_ctor.ipp" namespace test = boost_no_typename_with_ctor; #endif -#ifdef TEST_BOOST_NO_CXX11_HDR_ARRAY -# include "../test/boost_no_cxx11_hdr_array.ipp" -namespace test = boost_no_cxx11_hdr_array; +#ifdef TEST_BOOST_NO_CXX11_UNICODE_LITERALS +# include "../test/boost_no_unicode_literals.ipp" +namespace test = boost_no_cxx11_unicode_literals; #endif -#ifdef TEST_BOOST_HAS_TR1_MEM_FN -# include "../test/boost_has_tr1_mem_fn.ipp" -namespace test = boost_has_tr1_mem_fn; -#endif -#ifdef TEST_BOOST_NO_CXX11_ALIGNAS -# include "../test/boost_no_cxx11_alignas.ipp" -namespace test = boost_no_cxx11_alignas; -#endif -#ifdef TEST_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE -# include "../test/boost_no_using_decl_overld.ipp" -namespace test = boost_no_using_declaration_overloads_from_typename_base; -#endif -#ifdef TEST_BOOST_HAS_PTHREAD_YIELD -# include "../test/boost_has_pthread_yield.ipp" -namespace test = boost_has_pthread_yield; -#endif -#ifdef TEST_BOOST_NO_INCLASS_MEMBER_INITIALIZATION -# include "../test/boost_no_inline_memb_init.ipp" -namespace test = boost_no_inclass_member_initialization; -#endif -#ifdef TEST_BOOST_NO_STD_TYPEINFO -# include "../test/boost_no_std_typeinfo.ipp" -namespace test = boost_no_std_typeinfo; -#endif -#ifdef TEST_BOOST_NO_CXX11_VARIADIC_MACROS -# include "../test/boost_no_variadic_macros.ipp" -namespace test = boost_no_cxx11_variadic_macros; +#ifdef TEST_BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX +# include "../test/boost_no_unified_init.ipp" +namespace test = boost_no_cxx11_unified_initialization_syntax; #endif #ifdef TEST_BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL # include "../test/boost_no_using_breaks_adl.ipp" namespace test = boost_function_scope_using_declaration_breaks_adl; #endif -#ifdef TEST_BOOST_NO_STD_WSTRING -# include "../test/boost_no_std_wstring.ipp" -namespace test = boost_no_std_wstring; +#ifdef TEST_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE +# include "../test/boost_no_using_decl_overld.ipp" +namespace test = boost_no_using_declaration_overloads_from_typename_base; #endif -#ifdef TEST_BOOST_NO_CTYPE_FUNCTIONS -# include "../test/boost_no_ctype_functions.ipp" -namespace test = boost_no_ctype_functions; +#ifdef TEST_BOOST_NO_USING_TEMPLATE +# include "../test/boost_no_using_template.ipp" +namespace test = boost_no_using_template; #endif -#ifdef TEST_BOOST_NO_CXX11_NULLPTR -# include "../test/boost_no_nullptr.ipp" -namespace test = boost_no_cxx11_nullptr; +#ifdef TEST_BOOST_NO_CXX11_VARIADIC_MACROS +# include "../test/boost_no_variadic_macros.ipp" +namespace test = boost_no_cxx11_variadic_macros; #endif -#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD -# include "../test/boost_no_mem_tem_keyword.ipp" -namespace test = boost_no_member_template_keyword; +#ifdef TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES +# include "../test/boost_no_variadic_templates.ipp" +namespace test = boost_no_cxx11_variadic_templates; #endif -#ifdef TEST_BOOST_NO_CXX11_RVALUE_REFERENCES -# include "../test/boost_no_rvalue_references.ipp" -namespace test = boost_no_cxx11_rvalue_references; +#ifdef TEST_BOOST_NO_VOID_RETURNS +# include "../test/boost_no_void_returns.ipp" +namespace test = boost_no_void_returns; #endif -#ifdef TEST_BOOST_NO_PRIVATE_IN_AGGREGATE -# include "../test/boost_no_priv_aggregate.ipp" -namespace test = boost_no_private_in_aggregate; -#endif -#ifdef TEST_BOOST_NO_CXX11_ALLOCATOR -# include "../test/boost_no_cxx11_allocator.ipp" -namespace test = boost_no_cxx11_allocator; -#endif -#ifdef TEST_BOOST_NO_SWPRINTF -# include "../test/boost_no_swprintf.ipp" -namespace test = boost_no_swprintf; -#endif -#ifdef TEST_BOOST_NO_CXX11_FINAL -# include "../test/boost_no_cxx11_final.ipp" -namespace test = boost_no_cxx11_final; -#endif -#ifdef TEST_BOOST_NO_STDC_NAMESPACE -# include "../test/boost_no_stdc_namespace.ipp" -namespace test = boost_no_stdc_namespace; -#endif -#ifdef TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP -# include "../test/boost_no_two_phase_lookup.ipp" -namespace test = boost_no_two_phase_name_lookup; -#endif -#ifdef TEST_BOOST_NO_CXX11_HDR_FORWARD_LIST -# include "../test/boost_no_cxx11_hdr_forward_list.ipp" -namespace test = boost_no_cxx11_hdr_forward_list; -#endif -#ifdef TEST_BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN -# include "../test/boost_no_std_oi_assign.ipp" -namespace test = boost_no_std_output_iterator_assign; -#endif -#ifdef TEST_BOOST_HAS_TR1_UTILITY -# include "../test/boost_has_tr1_utility.ipp" -namespace test = boost_has_tr1_utility; -#endif -#ifdef TEST_BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS -# include "../test/boost_no_cxx11_non_pub_def_fun.ipp" -namespace test = boost_no_cxx11_non_public_defaulted_functions; -#endif -#ifdef TEST_BOOST_HAS_DIRENT_H -# include "../test/boost_has_dirent_h.ipp" -namespace test = boost_has_dirent_h; -#endif -#ifdef TEST_BOOST_NO_NESTED_FRIENDSHIP -# include "../test/boost_no_nested_friendship.ipp" -namespace test = boost_no_nested_friendship; -#endif -#ifdef TEST_BOOST_NO_POINTER_TO_MEMBER_CONST -# include "../test/boost_no_ptr_mem_const.ipp" -namespace test = boost_no_pointer_to_member_const; -#endif -#ifdef TEST_BOOST_HAS_FTIME -# include "../test/boost_has_ftime.ipp" -namespace test = boost_has_ftime; +#ifdef TEST_BOOST_NO_INTRINSIC_WCHAR_T +# include "../test/boost_no_wchar_t.ipp" +namespace test = boost_no_intrinsic_wchar_t; #endif int main( int, char *[] ) diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index 04d8054c..67151578 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -870,6 +870,50 @@ release supports the CTP features. [endsect] +[section Macros that describe C++14 features not supported] + +The following macros describe features in the 2014 ISO C++ standard, formerly known as C++0y, +that are not yet supported by a particular compiler or library. + +[table +[[Macro ][Description ]] +[[`BOOST_NO_CXX14_AGGREGATE_NSDMI`][The compiler does not support member initializer for aggregates as in the following example: +[[`BOOST_NO_CXX14_BINARY_LITERALS`][The compiler does not binary literals (e.g. `0b1010`).]] +[[`BOOST_NO_CXX14_CONSTEXPR`][The compiler does not support relaxed `constexpr`.]] +[[`BOOST_NO_CXX14_DECLTYPE_AUTO`][The compiler does not support `decltype(auto)`.]] +[[`BOOST_NO_CXX14_DIGIT_SEPARATOR`][The compiler does not support digit separators (e.g. `1'000'000`).]] +[[`BOOST_NO_CXX14_GENERIC_LAMBDAS`][The compiler does not support generic lambda (e.g. `[](auto v){ }`).]] +[[`BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE`][The compiler does not support initialized lambda capture (e.g. `[foo = 42]{ }`).]] +[[`BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION`][The compiler does not support return type deduction for normal functions (e.g. `auto f() { return val; }`).]] +[[`BOOST_NO_CXX14_VARIABLE_TEMPLATES`][The compiler does not support variable template (e.g. `template T kibi = T(1024);`).]] +[: +`` +struct Foo +{ +int x, y = 42; +}; +Foo foo = { 0 }; +`` +] +]] +] + +[endsect] + +[#config_14_for_11] + +[section Macros that allow use of C++14 features with C++11 or earlier compilers] + +The following macros allow use of C++14 features even with compilers that do not yet +provide compliant C++14 support. + +[table +[[Macro ][ Description ]] +[[`BOOST_CXX14_CONSTEXPR`][This macro works similar to BOOST_CONSTEXPR, but expands to `constexpr` only if the C++14 "relaxed" `constexpr` is available.]] +] + +[endsect] + [#config_helpers] [section Boost Helper Macros] diff --git a/include/boost/config/compiler/borland.hpp b/include/boost/config/compiler/borland.hpp index deb07ad7..384d1b58 100644 --- a/include/boost/config/compiler/borland.hpp +++ b/include/boost/config/compiler/borland.hpp @@ -197,6 +197,18 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + + #if __BORLANDC__ >= 0x590 # define BOOST_HAS_TR1_HASH diff --git a/include/boost/config/compiler/clang.hpp b/include/boost/config/compiler/clang.hpp index ab835ddc..065ea3c7 100644 --- a/include/boost/config/compiler/clang.hpp +++ b/include/boost/config/compiler/clang.hpp @@ -205,6 +205,43 @@ # define BOOST_NO_CXX11_FINAL #endif +#if !(__has_feature(cxx_binary_literals) || __has_extension(cxx_binary_literals)) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif + +#if !(__has_feature(cxx_decltype_auto) || __has_extension(cxx_decltype_auto)) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif + +#if !(__has_feature(cxx_aggregate_nsdmi) || __has_extension(cxx_aggregate_nsdmi)) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif + +#if !(__has_feature(cxx_init_captures) || __has_extension(cxx_init_captures)) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif + +#if !(__has_feature(cxx_generic_lambdas) || __has_extension(cxx_generic_lambdas)) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif + +#if !(__has_feature(cxx_relaxed_constexpr) || __has_extension(cxx_relaxed_constexpr)) +# define BOOST_NO_CXX14_CONSTEXPR +#endif + +#if !(__has_feature(cxx_return_type_deduction) || __has_extension(cxx_return_type_deduction)) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif + +#if !(__has_feature(cxx_variable_templates) || __has_extension(cxx_variable_templates)) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif + +#if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4) +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif + + // Unused attribute: #if defined(__GNUC__) && (__GNUC__ >= 4) # define BOOST_ATTRIBUTE_UNUSED __attribute__((unused)) diff --git a/include/boost/config/compiler/codegear.hpp b/include/boost/config/compiler/codegear.hpp index 37ba699f..039261c8 100644 --- a/include/boost/config/compiler/codegear.hpp +++ b/include/boost/config/compiler/codegear.hpp @@ -123,6 +123,17 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + // // TR1 macros: // diff --git a/include/boost/config/compiler/common_edg.hpp b/include/boost/config/compiler/common_edg.hpp index a7ea732f..5c89b176 100644 --- a/include/boost/config/compiler/common_edg.hpp +++ b/include/boost/config/compiler/common_edg.hpp @@ -107,6 +107,35 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif + #ifdef c_plusplus // EDG has "long long" in non-strict mode // However, some libraries have insufficient "long long" support diff --git a/include/boost/config/compiler/cray.hpp b/include/boost/config/compiler/cray.hpp index a94d8e61..9c387fb0 100644 --- a/include/boost/config/compiler/cray.hpp +++ b/include/boost/config/compiler/cray.hpp @@ -60,6 +60,19 @@ #define BOOST_NO_CXX11_CHAR16_T #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL + +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + + //#define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #define BOOST_MATH_DISABLE_STD_FPCLASSIFY //#define BOOST_HAS_FPCLASSIFY diff --git a/include/boost/config/compiler/digitalmars.hpp b/include/boost/config/compiler/digitalmars.hpp index 22855572..f019cd0f 100644 --- a/include/boost/config/compiler/digitalmars.hpp +++ b/include/boost/config/compiler/digitalmars.hpp @@ -83,6 +83,17 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + #if (__DMC__ <= 0x840) #error "Compiler not supported or configured - please reconfigure" #endif diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index 714b4672..96531342 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -235,6 +235,35 @@ # define BOOST_NO_CXX11_REF_QUALIFIERS #endif +// C++ 14: +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif + // // Unused attribute: #if __GNUC__ >= 4 diff --git a/include/boost/config/compiler/gcc_xml.hpp b/include/boost/config/compiler/gcc_xml.hpp index f73d8445..7a4294b3 100644 --- a/include/boost/config/compiler/gcc_xml.hpp +++ b/include/boost/config/compiler/gcc_xml.hpp @@ -61,6 +61,17 @@ # define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + #define BOOST_COMPILER "GCC-XML C++ version " __GCCXML__ diff --git a/include/boost/config/compiler/metrowerks.hpp b/include/boost/config/compiler/metrowerks.hpp index 2d1d40a3..66edb139 100644 --- a/include/boost/config/compiler/metrowerks.hpp +++ b/include/boost/config/compiler/metrowerks.hpp @@ -126,6 +126,17 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + #define BOOST_COMPILER "Metrowerks CodeWarrior C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION) // diff --git a/include/boost/config/compiler/mpw.hpp b/include/boost/config/compiler/mpw.hpp index a35cc40c..92fa080e 100644 --- a/include/boost/config/compiler/mpw.hpp +++ b/include/boost/config/compiler/mpw.hpp @@ -74,6 +74,18 @@ #define BOOST_NO_CXX11_INLINE_NAMESPACES #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL + +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES + // // versions check: // we don't support MPW prior to version 8.9: diff --git a/include/boost/config/compiler/pathscale.hpp b/include/boost/config/compiler/pathscale.hpp index af643dba..987a3ed8 100644 --- a/include/boost/config/compiler/pathscale.hpp +++ b/include/boost/config/compiler/pathscale.hpp @@ -82,4 +82,15 @@ # define BOOST_NO_CXX11_INLINE_NAMESPACES # define BOOST_NO_CXX11_REF_QUALIFIERS # define BOOST_NO_CXX11_FINAL + +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES #endif diff --git a/include/boost/config/compiler/pgi.hpp b/include/boost/config/compiler/pgi.hpp index 59e9b24b..b942ac64 100644 --- a/include/boost/config/compiler/pgi.hpp +++ b/include/boost/config/compiler/pgi.hpp @@ -121,6 +121,16 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES // // version check: // probably nothing to do here? diff --git a/include/boost/config/compiler/sunpro_cc.hpp b/include/boost/config/compiler/sunpro_cc.hpp index f61caf6c..01d696a3 100644 --- a/include/boost/config/compiler/sunpro_cc.hpp +++ b/include/boost/config/compiler/sunpro_cc.hpp @@ -134,6 +134,16 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL +// C++ 14: +#define BOOST_NO_CXX14_AGGREGATE_NSDMI +#define BOOST_NO_CXX14_BINARY_LITERALS +#define BOOST_NO_CXX14_CONSTEXPR +#define BOOST_NO_CXX14_DECLTYPE_AUTO +#define BOOST_NO_CXX14_DIGIT_SEPARATOR +#define BOOST_NO_CXX14_GENERIC_LAMBDAS +#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#define BOOST_NO_CXX14_VARIABLE_TEMPLATES // // Version // diff --git a/include/boost/config/compiler/vacpp.hpp b/include/boost/config/compiler/vacpp.hpp index 887a92c3..0aa9389e 100644 --- a/include/boost/config/compiler/vacpp.hpp +++ b/include/boost/config/compiler/vacpp.hpp @@ -131,3 +131,32 @@ #define BOOST_NO_CXX11_INLINE_NAMESPACES #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL + +// C++ 14: +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 41bb5fe0..03ef2b97 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -192,6 +192,35 @@ #define BOOST_NO_SFINAE_EXPR #define BOOST_NO_TWO_PHASE_NAME_LOOKUP +// C++ 14: +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif + // // prefix and suffix headers: // diff --git a/include/boost/config/suffix.hpp b/include/boost/config/suffix.hpp index 1720dab7..c0ba3339 100644 --- a/include/boost/config/suffix.hpp +++ b/include/boost/config/suffix.hpp @@ -939,6 +939,11 @@ namespace std{ using ::type_info; } #define BOOST_CONSTEXPR constexpr #define BOOST_CONSTEXPR_OR_CONST constexpr #endif +#if defined(BOOST_NO_CXX14_CONSTEXPR) +#define BOOST_CXX14_CONSTEXPR +#else +#define BOOST_CXX14_CONSTEXPR constexpr +#endif // // Unused variable/typedef workarounds: diff --git a/test/all/Jamfile.v2 b/test/all/Jamfile.v2 index 1af6bbb9..9be35d97 100644 --- a/test/all/Jamfile.v2 +++ b/test/all/Jamfile.v2 @@ -1,7 +1,7 @@ # # Regression test Jamfile for boost configuration setup. # *** DO NOT EDIT THIS FILE BY HAND *** -# This file was automatically generated on Mon Aug 25 18:12:27 2014 +# This file was automatically generated on Sat Oct 11 19:26:21 2014 # by libs/config/tools/generate.cpp # Copyright John Maddock. # Use, modification and distribution are subject to the @@ -22,553 +22,580 @@ run ../config_test.cpp : : : multi : config_test_threaded ; run ../limits_test.cpp ../../../test/build//boost_test_exec_monitor ; run ../abi/abi_test.cpp ../abi/main.cpp ; -test-suite "BOOST_NO_CXX11_DECLTYPE" : -[ run ../no_decltype_pass.cpp ] -[ compile-fail ../no_decltype_fail.cpp ] ; -test-suite "BOOST_NO_SFINAE" : -[ run ../no_sfinae_pass.cpp ] -[ compile-fail ../no_sfinae_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_TYPE_TRAITS" : -[ run ../no_cxx11_hdr_type_traits_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_type_traits_fail.cpp ] ; -test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" : -[ run ../no_array_type_spec_pass.cpp ] -[ compile-fail ../no_array_type_spec_fail.cpp ] ; -test-suite "BOOST_NO_STD_ITERATOR_TRAITS" : -[ run ../no_std_iter_traits_pass.cpp ] -[ compile-fail ../no_std_iter_traits_fail.cpp ] ; -test-suite "BOOST_HAS_INT128" : -[ run ../has_int128_pass.cpp ] -[ compile-fail ../has_int128_fail.cpp ] ; -test-suite "BOOST_HAS_UNISTD_H" : -[ run ../has_unistd_h_pass.cpp ] -[ compile-fail ../has_unistd_h_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_RANDOM" : -[ run ../has_tr1_random_pass.cpp ] -[ compile-fail ../has_tr1_random_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_UNORDERED_MAP" : -[ run ../no_cxx11_hdr_unordered_map_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_unordered_map_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_RESULT_OF" : -[ run ../has_tr1_result_of_pass.cpp ] -[ compile-fail ../has_tr1_result_of_fail.cpp ] ; -test-suite "BOOST_HAS_PTHREAD_DELAY_NP" : -[ run ../has_pthread_delay_np_pass.cpp ] -[ compile-fail ../has_pthread_delay_np_fail.cpp ] ; -test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" : -[ run ../no_mem_tem_pnts_pass.cpp ] -[ compile-fail ../no_mem_tem_pnts_fail.cpp ] ; -test-suite "BOOST_NO_IS_ABSTRACT" : -[ run ../no_is_abstract_pass.cpp ] -[ compile-fail ../no_is_abstract_fail.cpp ] ; -test-suite "BOOST_NO_TEMPLATED_IOSTREAMS" : -[ run ../no_template_streams_pass.cpp ] -[ compile-fail ../no_template_streams_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_INLINE_NAMESPACES" : -[ run ../no_cxx11_inline_namespaces_pass.cpp ] -[ compile-fail ../no_cxx11_inline_namespaces_fail.cpp ] ; -test-suite "BOOST_NO_FENV_H" : -[ run ../no_fenv_h_pass.cpp ] -[ compile-fail ../no_fenv_h_fail.cpp ] ; -test-suite "BOOST_HAS_NANOSLEEP" : -[ run ../has_nanosleep_pass.cpp ] -[ compile-fail ../has_nanosleep_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" : -[ run ../no_cxx11_hdr_typeindex_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ; -test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" : -[ run ../no_excep_std_pass.cpp ] -[ compile-fail ../no_excep_std_fail.cpp ] ; -test-suite "BOOST_NO_INTEGRAL_INT64_T" : -[ run ../no_integral_int64_t_pass.cpp ] -[ compile-fail ../no_integral_int64_t_fail.cpp ] ; -test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" : -[ run ../no_limits_const_exp_pass.cpp ] -[ compile-fail ../no_limits_const_exp_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_REGEX" : -[ run ../has_tr1_regex_pass.cpp ] -[ compile-fail ../has_tr1_regex_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX" : -[ run ../no_unified_init_pass.cpp ] -[ compile-fail ../no_unified_init_fail.cpp ] ; -test-suite "BOOST_NO_STD_MIN_MAX" : -[ run ../no_std_min_max_pass.cpp ] -[ compile-fail ../no_std_min_max_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_USER_DEFINED_LITERALS" : -[ run ../no_cxx11_user_lit_pass.cpp ] -[ compile-fail ../no_cxx11_user_lit_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_RATIO" : -[ run ../no_cxx11_hdr_ratio_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_ratio_fail.cpp ] ; -test-suite "BOOST_NO_COMPLETE_VALUE_INITIALIZATION" : -[ run ../no_com_value_init_pass.cpp ] -[ compile-fail ../no_com_value_init_fail.cpp ] ; +test-suite "BOOST_HAS_TWO_ARG_USE_FACET" : +[ run ../has_2arg_use_facet_pass.cpp ] +[ compile-fail ../has_2arg_use_facet_fail.cpp ] ; +test-suite "BOOST_HAS_BETHREADS" : +[ run ../has_bethreads_pass.cpp ] +[ compile-fail ../has_bethreads_fail.cpp ] ; +test-suite "BOOST_HAS_CLOCK_GETTIME" : +[ run ../has_clock_gettime_pass.cpp ] +[ compile-fail ../has_clock_gettime_fail.cpp ] ; +test-suite "BOOST_HAS_DIRENT_H" : +[ run ../has_dirent_h_pass.cpp ] +[ compile-fail ../has_dirent_h_fail.cpp ] ; +test-suite "BOOST_HAS_EXPM1" : +[ run ../has_expm1_pass.cpp ] +[ compile-fail ../has_expm1_fail.cpp ] ; +test-suite "BOOST_HAS_FTIME" : +[ run ../has_ftime_pass.cpp ] +[ compile-fail ../has_ftime_fail.cpp ] ; test-suite "BOOST_HAS_GETSYSTEMTIMEASFILETIME" : [ run ../has_getsystemtimeasfiletime_pass.cpp ] [ compile-fail ../has_getsystemtimeasfiletime_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_ADDRESSOF" : -[ run ../no_cxx11_addressof_pass.cpp ] -[ compile-fail ../no_cxx11_addressof_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_FUNCTIONAL" : -[ run ../no_cxx_hdr_functional_pass.cpp ] -[ compile-fail ../no_cxx_hdr_functional_fail.cpp ] ; +test-suite "BOOST_HAS_GETTIMEOFDAY" : +[ run ../has_gettimeofday_pass.cpp ] +[ compile-fail ../has_gettimeofday_fail.cpp ] ; test-suite "BOOST_HAS_HASH" : [ run ../has_hash_pass.cpp ] [ compile-fail ../has_hash_fail.cpp ] ; +test-suite "BOOST_HAS_INT128" : +[ run ../has_int128_pass.cpp ] +[ compile-fail ../has_int128_fail.cpp ] ; +test-suite "BOOST_HAS_LOG1P" : +[ run ../has_log1p_pass.cpp ] +[ compile-fail ../has_log1p_fail.cpp ] ; +test-suite "BOOST_HAS_LONG_LONG" : +[ run ../has_long_long_pass.cpp ] +[ compile-fail ../has_long_long_fail.cpp ] ; test-suite "BOOST_HAS_MACRO_USE_FACET" : [ run ../has_macro_use_facet_pass.cpp ] [ compile-fail ../has_macro_use_facet_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_DECLTYPE_N3276" : -[ run ../no_decltype_n3276_pass.cpp ] -[ compile-fail ../no_decltype_n3276_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS" : -[ run ../no_tem_local_classes_pass.cpp ] -[ compile-fail ../no_tem_local_classes_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" : -[ run ../no_mem_func_spec_pass.cpp ] -[ compile-fail ../no_mem_func_spec_fail.cpp ] ; -test-suite "BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS" : -[ run ../no_part_spec_def_args_pass.cpp ] -[ compile-fail ../no_part_spec_def_args_fail.cpp ] ; -test-suite "BOOST_NO_STD_WSTREAMBUF" : -[ run ../no_std_wstreambuf_pass.cpp ] -[ compile-fail ../no_std_wstreambuf_fail.cpp ] ; -test-suite "BOOST_NO_LONG_LONG" : -[ run ../no_long_long_pass.cpp ] -[ compile-fail ../no_long_long_fail.cpp ] ; +test-suite "BOOST_HAS_MS_INT64" : +[ run ../has_ms_int64_pass.cpp ] +[ compile-fail ../has_ms_int64_fail.cpp ] ; +test-suite "BOOST_HAS_NANOSLEEP" : +[ run ../has_nanosleep_pass.cpp ] +[ compile-fail ../has_nanosleep_fail.cpp ] ; +test-suite "BOOST_HAS_NL_TYPES_H" : +[ run ../has_nl_types_h_pass.cpp ] +[ compile-fail ../has_nl_types_h_fail.cpp ] ; +test-suite "BOOST_HAS_NRVO" : +[ run ../has_nrvo_pass.cpp ] +[ compile-fail ../has_nrvo_fail.cpp ] ; +test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" : +[ run ../has_part_alloc_pass.cpp ] +[ compile-fail ../has_part_alloc_fail.cpp ] ; +test-suite "BOOST_HAS_PTHREADS" : +[ run ../has_pthreads_pass.cpp ] +[ compile-fail ../has_pthreads_fail.cpp ] ; +test-suite "BOOST_HAS_PTHREAD_DELAY_NP" : +[ run ../has_pthread_delay_np_pass.cpp ] +[ compile-fail ../has_pthread_delay_np_fail.cpp ] ; +test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" : +[ run ../has_pthread_ma_st_pass.cpp ] +[ compile-fail ../has_pthread_ma_st_fail.cpp ] ; +test-suite "BOOST_HAS_PTHREAD_YIELD" : +[ run ../has_pthread_yield_pass.cpp ] +[ compile-fail ../has_pthread_yield_fail.cpp ] ; +test-suite "BOOST_HAS_RVALUE_REFS" : +[ run ../has_rvalue_refs_pass.cpp ] +[ compile-fail ../has_rvalue_refs_fail.cpp ] ; +test-suite "BOOST_HAS_SCHED_YIELD" : +[ run ../has_sched_yield_pass.cpp ] +[ compile-fail ../has_sched_yield_fail.cpp ] ; +test-suite "BOOST_HAS_SGI_TYPE_TRAITS" : +[ run ../has_sgi_type_traits_pass.cpp ] +[ compile-fail ../has_sgi_type_traits_fail.cpp ] ; +test-suite "BOOST_HAS_SIGACTION" : +[ run ../has_sigaction_pass.cpp ] +[ compile-fail ../has_sigaction_fail.cpp ] ; +test-suite "BOOST_HAS_SLIST" : +[ run ../has_slist_pass.cpp ] +[ compile-fail ../has_slist_fail.cpp ] ; +test-suite "BOOST_HAS_STATIC_ASSERT" : +[ run ../has_static_assert_pass.cpp ] +[ compile-fail ../has_static_assert_fail.cpp ] ; +test-suite "BOOST_HAS_STDINT_H" : +[ run ../has_stdint_h_pass.cpp ] +[ compile-fail ../has_stdint_h_fail.cpp ] ; +test-suite "BOOST_HAS_STLP_USE_FACET" : +[ run ../has_stlp_use_facet_pass.cpp ] +[ compile-fail ../has_stlp_use_facet_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_ARRAY" : +[ run ../has_tr1_array_pass.cpp ] +[ compile-fail ../has_tr1_array_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_BIND" : +[ run ../has_tr1_bind_pass.cpp ] +[ compile-fail ../has_tr1_bind_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_COMPLEX_OVERLOADS" : +[ run ../has_tr1_complex_over_pass.cpp ] +[ compile-fail ../has_tr1_complex_over_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG" : +[ run ../has_tr1_complex_trig_pass.cpp ] +[ compile-fail ../has_tr1_complex_trig_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_FUNCTION" : +[ run ../has_tr1_function_pass.cpp ] +[ compile-fail ../has_tr1_function_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_HASH" : +[ run ../has_tr1_hash_pass.cpp ] +[ compile-fail ../has_tr1_hash_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_MEM_FN" : +[ run ../has_tr1_mem_fn_pass.cpp ] +[ compile-fail ../has_tr1_mem_fn_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_RANDOM" : +[ run ../has_tr1_random_pass.cpp ] +[ compile-fail ../has_tr1_random_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_REFERENCE_WRAPPER" : +[ run ../has_tr1_ref_wrap_pass.cpp ] +[ compile-fail ../has_tr1_ref_wrap_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_REGEX" : +[ run ../has_tr1_regex_pass.cpp ] +[ compile-fail ../has_tr1_regex_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_RESULT_OF" : +[ run ../has_tr1_result_of_pass.cpp ] +[ compile-fail ../has_tr1_result_of_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_SHARED_PTR" : +[ run ../has_tr1_shared_ptr_pass.cpp ] +[ compile-fail ../has_tr1_shared_ptr_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_TUPLE" : +[ run ../has_tr1_tuple_pass.cpp ] +[ compile-fail ../has_tr1_tuple_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_TYPE_TRAITS" : +[ run ../has_tr1_type_traits_pass.cpp ] +[ compile-fail ../has_tr1_type_traits_fail.cpp ] ; test-suite "BOOST_HAS_TR1_UNORDERED_MAP" : [ run ../has_tr1_unordered_map_pass.cpp ] [ compile-fail ../has_tr1_unordered_map_fail.cpp ] ; test-suite "BOOST_HAS_TR1_UNORDERED_SET" : [ run ../has_tr1_unordered_set_pass.cpp ] [ compile-fail ../has_tr1_unordered_set_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_EXTERN_TEMPLATE" : -[ run ../no_extern_template_pass.cpp ] -[ compile-fail ../no_extern_template_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_CONSTEXPR" : -[ run ../no_constexpr_pass.cpp ] -[ compile-fail ../no_constexpr_fail.cpp ] ; -test-suite "BOOST_NO_INTRINSIC_WCHAR_T" : -[ run ../no_wchar_t_pass.cpp ] -[ compile-fail ../no_wchar_t_fail.cpp ] ; -test-suite "BOOST_HAS_SGI_TYPE_TRAITS" : -[ run ../has_sgi_type_traits_pass.cpp ] -[ compile-fail ../has_sgi_type_traits_fail.cpp ] ; -test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" : -[ run ../no_ops_in_namespace_pass.cpp ] -[ compile-fail ../no_ops_in_namespace_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_DELETED_FUNCTIONS" : -[ run ../no_deleted_functions_pass.cpp ] -[ compile-fail ../no_deleted_functions_fail.cpp ] ; -test-suite "BOOST_NO_IOSFWD" : -[ run ../no_iosfwd_pass.cpp ] -[ compile-fail ../no_iosfwd_fail.cpp ] ; -test-suite "BOOST_HAS_LONG_LONG" : -[ run ../has_long_long_pass.cpp ] -[ compile-fail ../has_long_long_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_NUMERIC_LIMITS" : -[ run ../no_cxx11_numeric_limits_pass.cpp ] -[ compile-fail ../no_cxx11_numeric_limits_fail.cpp ] ; -test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" : -[ run ../no_ret_det_pass.cpp ] -[ compile-fail ../no_ret_det_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_VARIADIC_TEMPLATES" : -[ run ../no_variadic_templates_pass.cpp ] -[ compile-fail ../no_variadic_templates_fail.cpp ] ; -test-suite "BOOST_HAS_WINTHREADS" : -[ run ../has_winthreads_pass.cpp ] -[ compile-fail ../has_winthreads_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_NOEXCEPT" : -[ run ../no_noexcept_pass.cpp ] -[ compile-fail ../no_noexcept_fail.cpp ] ; -test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" : -[ run ../no_cv_void_spec_pass.cpp ] -[ compile-fail ../no_cv_void_spec_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_INITIALIZER_LIST" : -[ run ../no_cxx11_hdr_initializer_list_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_initializer_list_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_COMPLEX_OVERLOADS" : -[ run ../has_tr1_complex_over_pass.cpp ] -[ compile-fail ../has_tr1_complex_over_fail.cpp ] ; -test-suite "BOOST_HAS_NL_TYPES_H" : -[ run ../has_nl_types_h_pass.cpp ] -[ compile-fail ../has_nl_types_h_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS" : -[ run ../no_function_template_default_args_pass.cpp ] -[ compile-fail ../no_function_template_default_args_fail.cpp ] ; -test-suite "BOOST_HAS_TWO_ARG_USE_FACET" : -[ run ../has_2arg_use_facet_pass.cpp ] -[ compile-fail ../has_2arg_use_facet_fail.cpp ] ; -test-suite "BOOST_MSVC6_MEMBER_TEMPLATES" : -[ run ../has_vc6_mem_templ_pass.cpp ] -[ compile-fail ../has_vc6_mem_templ_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_LAMBDAS" : -[ run ../no_lambdas_pass.cpp ] -[ compile-fail ../no_lambdas_fail.cpp ] ; -test-suite "BOOST_HAS_LOG1P" : -[ run ../has_log1p_pass.cpp ] -[ compile-fail ../has_log1p_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_ARRAY" : -[ run ../has_tr1_array_pass.cpp ] -[ compile-fail ../has_tr1_array_fail.cpp ] ; -test-suite "BOOST_HAS_NRVO" : -[ run ../has_nrvo_pass.cpp ] -[ compile-fail ../has_nrvo_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_DEFAULTED_FUNCTIONS" : -[ run ../no_defaulted_functions_pass.cpp ] -[ compile-fail ../no_defaulted_functions_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_CHAR32_T" : -[ run ../no_char32_t_pass.cpp ] -[ compile-fail ../no_char32_t_fail.cpp ] ; -test-suite "BOOST_NO_EXCEPTIONS" : -[ run ../no_exceptions_pass.cpp ] -[ compile-fail ../no_exceptions_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_FUTURE" : -[ run ../no_cxx11_hdr_future_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_future_fail.cpp ] ; -test-suite "BOOST_HAS_SIGACTION" : -[ run ../has_sigaction_pass.cpp ] -[ compile-fail ../has_sigaction_fail.cpp ] ; -test-suite "BOOST_HAS_RVALUE_REFS" : -[ run ../has_rvalue_refs_pass.cpp ] -[ compile-fail ../has_rvalue_refs_fail.cpp ] ; -test-suite "BOOST_NO_CV_SPECIALIZATIONS" : -[ run ../no_cv_spec_pass.cpp ] -[ compile-fail ../no_cv_spec_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG" : -[ run ../has_tr1_complex_trig_pass.cpp ] -[ compile-fail ../has_tr1_complex_trig_fail.cpp ] ; -test-suite "BOOST_NO_STD_LOCALE" : -[ run ../no_std_locale_pass.cpp ] -[ compile-fail ../no_std_locale_fail.cpp ] ; -test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" : -[ run ../no_dep_val_param_pass.cpp ] -[ compile-fail ../no_dep_val_param_fail.cpp ] ; -test-suite "BOOST_NO_USING_TEMPLATE" : -[ run ../no_using_template_pass.cpp ] -[ compile-fail ../no_using_template_fail.cpp ] ; -test-suite "BOOST_NO_LIMITS" : -[ run ../no_limits_pass.cpp ] -[ compile-fail ../no_limits_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_THREAD" : -[ run ../no_cxx11_hdr_thread_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_thread_fail.cpp ] ; -test-suite "BOOST_NO_RTTI" : -[ run ../no_rtti_pass.cpp ] -[ compile-fail ../no_rtti_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS" : -[ run ../no_fixed_len_variadic_templates_pass.cpp ] -[ compile-fail ../no_fixed_len_variadic_templates_fail.cpp ] ; -test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" : -[ run ../no_ll_limits_pass.cpp ] -[ compile-fail ../no_ll_limits_fail.cpp ] ; -test-suite "BOOST_NO_CWCTYPE" : -[ run ../no_cwctype_pass.cpp ] -[ compile-fail ../no_cwctype_fail.cpp ] ; -test-suite "BOOST_HAS_SLIST" : -[ run ../has_slist_pass.cpp ] -[ compile-fail ../has_slist_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_TYPE_TRAITS" : -[ run ../has_tr1_type_traits_pass.cpp ] -[ compile-fail ../has_tr1_type_traits_fail.cpp ] ; -test-suite "BOOST_HAS_GETTIMEOFDAY" : -[ run ../has_gettimeofday_pass.cpp ] -[ compile-fail ../has_gettimeofday_fail.cpp ] ; -test-suite "BOOST_HAS_PTHREADS" : -[ run ../has_pthreads_pass.cpp ] -[ compile-fail ../has_pthreads_fail.cpp ] ; -test-suite "BOOST_DEDUCED_TYPENAME" : -[ run ../no_ded_typename_pass.cpp ] -[ compile-fail ../no_ded_typename_fail.cpp ] ; -test-suite "BOOST_HAS_CLOCK_GETTIME" : -[ run ../has_clock_gettime_pass.cpp ] -[ compile-fail ../has_clock_gettime_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_CONDITION_VARIABLE" : -[ run ../no_cxx11_hdr_condition_variable_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_condition_variable_fail.cpp ] ; -test-suite "BOOST_NO_STRINGSTREAM" : -[ run ../no_sstream_pass.cpp ] -[ compile-fail ../no_sstream_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_SYSTEM_ERROR" : -[ run ../no_cxx11_hdr_system_error_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_system_error_fail.cpp ] ; -test-suite "BOOST_HAS_BETHREADS" : -[ run ../has_bethreads_pass.cpp ] -[ compile-fail ../has_bethreads_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_TRAILING_RESULT_TYPES" : -[ run ../no_cxx11_trailing_result_types_pass.cpp ] -[ compile-fail ../no_cxx11_trailing_result_types_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_ATOMIC" : -[ run ../no_cxx11_hdr_atomic_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_atomic_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_SHARED_PTR" : -[ run ../has_tr1_shared_ptr_pass.cpp ] -[ compile-fail ../has_tr1_shared_ptr_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_STD_ALIGN" : -[ run ../no_cxx11_std_align_pass.cpp ] -[ compile-fail ../no_cxx11_std_align_fail.cpp ] ; -test-suite "BOOST_NO_CWCHAR" : -[ run ../no_cwchar_pass.cpp ] -[ compile-fail ../no_cwchar_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_MUTEX" : -[ run ../no_cxx11_hdr_mutex_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_mutex_fail.cpp ] ; -test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" : -[ run ../no_dep_nested_class_pass.cpp ] -[ compile-fail ../no_dep_nested_class_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_REF_QUALIFIERS" : -[ run ../no_cxx11_ref_qualifiers_pass.cpp ] -[ compile-fail ../no_cxx11_ref_qualifiers_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_BIND" : -[ run ../has_tr1_bind_pass.cpp ] -[ compile-fail ../has_tr1_bind_fail.cpp ] ; -test-suite "BOOST_MSVC_STD_ITERATOR" : -[ run ../has_vc_iterator_pass.cpp ] -[ compile-fail ../has_vc_iterator_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_CHRONO" : -[ run ../no_cxx11_hdr_chrono_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_chrono_fail.cpp ] ; -test-suite "BOOST_NO_STD_USE_FACET" : -[ run ../no_std_use_facet_pass.cpp ] -[ compile-fail ../no_std_use_facet_fail.cpp ] ; -test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" : -[ run ../no_iter_construct_pass.cpp ] -[ compile-fail ../no_iter_construct_fail.cpp ] ; -test-suite "BOOST_HAS_STLP_USE_FACET" : -[ run ../has_stlp_use_facet_pass.cpp ] -[ compile-fail ../has_stlp_use_facet_fail.cpp ] ; -test-suite "BOOST_NO_STD_DISTANCE" : -[ run ../no_std_distance_pass.cpp ] -[ compile-fail ../no_std_distance_fail.cpp ] ; -test-suite "BOOST_NO_TEMPLATE_TEMPLATES" : -[ run ../no_template_template_pass.cpp ] -[ compile-fail ../no_template_template_fail.cpp ] ; -test-suite "BOOST_NO_SFINAE_EXPR" : -[ run ../no_sfinae_expr_pass.cpp ] -[ compile-fail ../no_sfinae_expr_fail.cpp ] ; +test-suite "BOOST_HAS_TR1_UTILITY" : +[ run ../has_tr1_utility_pass.cpp ] +[ compile-fail ../has_tr1_utility_fail.cpp ] ; +test-suite "BOOST_HAS_UNISTD_H" : +[ run ../has_unistd_h_pass.cpp ] +[ compile-fail ../has_unistd_h_fail.cpp ] ; test-suite "BOOST_HAS_VARIADIC_TMPL" : [ run ../has_variadic_tmpl_pass.cpp ] [ compile-fail ../has_variadic_tmpl_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_TUPLE" : -[ run ../has_tr1_tuple_pass.cpp ] -[ compile-fail ../has_tr1_tuple_fail.cpp ] ; -test-suite "BOOST_HAS_STDINT_H" : -[ run ../has_stdint_h_pass.cpp ] -[ compile-fail ../has_stdint_h_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_CHAR16_T" : -[ run ../no_char16_t_pass.cpp ] -[ compile-fail ../no_char16_t_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_RANGE_BASED_FOR" : -[ run ../no_range_based_for_pass.cpp ] -[ compile-fail ../no_range_based_for_fail.cpp ] ; -test-suite "BOOST_NO_VOID_RETURNS" : -[ run ../no_void_returns_pass.cpp ] -[ compile-fail ../no_void_returns_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_CODECVT" : -[ run ../no_cxx11_hdr_codecvt_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_codecvt_fail.cpp ] ; -test-suite "BOOST_NO_AUTO_PTR" : -[ run ../no_auto_ptr_pass.cpp ] -[ compile-fail ../no_auto_ptr_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_REGEX" : -[ run ../no_cxx11_hdr_regex_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_regex_fail.cpp ] ; -test-suite "BOOST_NO_STD_MESSAGES" : -[ run ../no_std_messages_pass.cpp ] -[ compile-fail ../no_std_messages_fail.cpp ] ; -test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" : -[ run ../no_bcb_partial_spec_pass.cpp ] -[ compile-fail ../no_bcb_partial_spec_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_UNORDERED_SET" : -[ run ../no_cxx11_hdr_unordered_set_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_unordered_set_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_FUNCTION" : -[ run ../has_tr1_function_pass.cpp ] -[ compile-fail ../has_tr1_function_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_REFERENCE_WRAPPER" : -[ run ../has_tr1_ref_wrap_pass.cpp ] -[ compile-fail ../has_tr1_ref_wrap_fail.cpp ] ; -test-suite "BOOST_HAS_STATIC_ASSERT" : -[ run ../has_static_assert_pass.cpp ] -[ compile-fail ../has_static_assert_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS" : -[ run ../no_auto_multidecl_pass.cpp ] -[ compile-fail ../no_auto_multidecl_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_TUPLE" : -[ run ../no_cxx11_hdr_tuple_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_tuple_fail.cpp ] ; -test-suite "BOOST_HAS_SCHED_YIELD" : -[ run ../has_sched_yield_pass.cpp ] -[ compile-fail ../has_sched_yield_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_SMART_PTR" : -[ run ../no_cxx11_smart_ptr_pass.cpp ] -[ compile-fail ../no_cxx11_smart_ptr_fail.cpp ] ; +test-suite "BOOST_MSVC6_MEMBER_TEMPLATES" : +[ run ../has_vc6_mem_templ_pass.cpp ] +[ compile-fail ../has_vc6_mem_templ_fail.cpp ] ; +test-suite "BOOST_MSVC_STD_ITERATOR" : +[ run ../has_vc_iterator_pass.cpp ] +[ compile-fail ../has_vc_iterator_fail.cpp ] ; +test-suite "BOOST_HAS_WINTHREADS" : +[ run ../has_winthreads_pass.cpp ] +[ compile-fail ../has_winthreads_fail.cpp ] ; test-suite "BOOST_NO_ADL_BARRIER" : [ run ../no_adl_barrier_pass.cpp ] [ compile-fail ../no_adl_barrier_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" : -[ run ../no_explicit_cvt_ops_pass.cpp ] -[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_AUTO_DECLARATIONS" : -[ run ../no_auto_declarations_pass.cpp ] -[ compile-fail ../no_auto_declarations_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_UNICODE_LITERALS" : -[ run ../no_unicode_literals_pass.cpp ] -[ compile-fail ../no_unicode_literals_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_HASH" : -[ run ../has_tr1_hash_pass.cpp ] -[ compile-fail ../has_tr1_hash_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" : -[ run ../no_mem_templ_frnds_pass.cpp ] -[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_SCOPED_ENUMS" : -[ run ../no_scoped_enums_pass.cpp ] -[ compile-fail ../no_scoped_enums_fail.cpp ] ; -test-suite "BOOST_HAS_MS_INT64" : -[ run ../has_ms_int64_pass.cpp ] -[ compile-fail ../has_ms_int64_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_RAW_LITERALS" : -[ run ../no_raw_literals_pass.cpp ] -[ compile-fail ../no_raw_literals_fail.cpp ] ; -test-suite "BOOST_NO_IOSTREAM" : -[ run ../no_iostream_pass.cpp ] -[ compile-fail ../no_iostream_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_ATOMIC_SMART_PTR" : -[ run ../no_cxx11_atomic_sp_pass.cpp ] -[ compile-fail ../no_cxx11_atomic_sp_fail.cpp ] ; -test-suite "BOOST_HAS_EXPM1" : -[ run ../has_expm1_pass.cpp ] -[ compile-fail ../has_expm1_fail.cpp ] ; -test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" : -[ run ../no_partial_spec_pass.cpp ] -[ compile-fail ../no_partial_spec_fail.cpp ] ; -test-suite "BOOST_NO_STD_ITERATOR" : -[ run ../no_std_iterator_pass.cpp ] -[ compile-fail ../no_std_iterator_fail.cpp ] ; -test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" : -[ run ../has_pthread_ma_st_pass.cpp ] -[ compile-fail ../has_pthread_ma_st_fail.cpp ] ; test-suite "BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP" : [ run ../no_arg_dep_lookup_pass.cpp ] [ compile-fail ../no_arg_dep_lookup_fail.cpp ] ; -test-suite "BOOST_NO_STD_ALLOCATOR" : -[ run ../no_std_allocator_pass.cpp ] -[ compile-fail ../no_std_allocator_fail.cpp ] ; -test-suite "BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS" : -[ run ../no_function_type_spec_pass.cpp ] -[ compile-fail ../no_function_type_spec_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_TEMPLATES" : -[ run ../no_mem_templates_pass.cpp ] -[ compile-fail ../no_mem_templates_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_STATIC_ASSERT" : -[ run ../no_static_assert_pass.cpp ] -[ compile-fail ../no_static_assert_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_TEMPLATE_ALIASES" : -[ run ../no_template_aliases_pass.cpp ] -[ compile-fail ../no_template_aliases_fail.cpp ] ; -test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" : -[ run ../no_exp_func_tem_arg_pass.cpp ] -[ compile-fail ../no_exp_func_tem_arg_fail.cpp ] ; -test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" : -[ run ../no_i64_limits_pass.cpp ] -[ compile-fail ../no_i64_limits_fail.cpp ] ; +test-suite "BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS" : +[ run ../no_array_type_spec_pass.cpp ] +[ compile-fail ../no_array_type_spec_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_AUTO_DECLARATIONS" : +[ run ../no_auto_declarations_pass.cpp ] +[ compile-fail ../no_auto_declarations_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS" : +[ run ../no_auto_multidecl_pass.cpp ] +[ compile-fail ../no_auto_multidecl_fail.cpp ] ; +test-suite "BOOST_NO_AUTO_PTR" : +[ run ../no_auto_ptr_pass.cpp ] +[ compile-fail ../no_auto_ptr_fail.cpp ] ; +test-suite "BOOST_BCB_PARTIAL_SPECIALIZATION_BUG" : +[ run ../no_bcb_partial_spec_pass.cpp ] +[ compile-fail ../no_bcb_partial_spec_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_CHAR16_T" : +[ run ../no_char16_t_pass.cpp ] +[ compile-fail ../no_char16_t_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_CHAR32_T" : +[ run ../no_char32_t_pass.cpp ] +[ compile-fail ../no_char32_t_fail.cpp ] ; +test-suite "BOOST_NO_COMPLETE_VALUE_INITIALIZATION" : +[ run ../no_com_value_init_pass.cpp ] +[ compile-fail ../no_com_value_init_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_CONSTEXPR" : +[ run ../no_constexpr_pass.cpp ] +[ compile-fail ../no_constexpr_fail.cpp ] ; +test-suite "BOOST_NO_CTYPE_FUNCTIONS" : +[ run ../no_ctype_functions_pass.cpp ] +[ compile-fail ../no_ctype_functions_fail.cpp ] ; +test-suite "BOOST_NO_CV_SPECIALIZATIONS" : +[ run ../no_cv_spec_pass.cpp ] +[ compile-fail ../no_cv_spec_fail.cpp ] ; +test-suite "BOOST_NO_CV_VOID_SPECIALIZATIONS" : +[ run ../no_cv_void_spec_pass.cpp ] +[ compile-fail ../no_cv_void_spec_fail.cpp ] ; +test-suite "BOOST_NO_CWCHAR" : +[ run ../no_cwchar_pass.cpp ] +[ compile-fail ../no_cwchar_fail.cpp ] ; +test-suite "BOOST_NO_CWCTYPE" : +[ run ../no_cwctype_pass.cpp ] +[ compile-fail ../no_cwctype_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_ADDRESSOF" : +[ run ../no_cxx11_addressof_pass.cpp ] +[ compile-fail ../no_cxx11_addressof_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_ALIGNAS" : +[ run ../no_cxx11_alignas_pass.cpp ] +[ compile-fail ../no_cxx11_alignas_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_ALLOCATOR" : +[ run ../no_cxx11_allocator_pass.cpp ] +[ compile-fail ../no_cxx11_allocator_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_ATOMIC_SMART_PTR" : +[ run ../no_cxx11_atomic_sp_pass.cpp ] +[ compile-fail ../no_cxx11_atomic_sp_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_FINAL" : +[ run ../no_cxx11_final_pass.cpp ] +[ compile-fail ../no_cxx11_final_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_ARRAY" : +[ run ../no_cxx11_hdr_array_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_array_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_ATOMIC" : +[ run ../no_cxx11_hdr_atomic_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_atomic_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_CHRONO" : +[ run ../no_cxx11_hdr_chrono_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_chrono_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_CODECVT" : +[ run ../no_cxx11_hdr_codecvt_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_codecvt_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_CONDITION_VARIABLE" : +[ run ../no_cxx11_hdr_condition_variable_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_condition_variable_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_FORWARD_LIST" : +[ run ../no_cxx11_hdr_forward_list_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_forward_list_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_FUTURE" : +[ run ../no_cxx11_hdr_future_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_future_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_INITIALIZER_LIST" : +[ run ../no_cxx11_hdr_initializer_list_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_initializer_list_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_MUTEX" : +[ run ../no_cxx11_hdr_mutex_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_mutex_fail.cpp ] ; test-suite "BOOST_NO_CXX11_HDR_RANDOM" : [ run ../no_cxx11_hdr_random_pass.cpp ] [ compile-fail ../no_cxx11_hdr_random_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_RATIO" : +[ run ../no_cxx11_hdr_ratio_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_ratio_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_REGEX" : +[ run ../no_cxx11_hdr_regex_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_regex_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_SYSTEM_ERROR" : +[ run ../no_cxx11_hdr_system_error_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_system_error_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_THREAD" : +[ run ../no_cxx11_hdr_thread_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_thread_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_TUPLE" : +[ run ../no_cxx11_hdr_tuple_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_tuple_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" : +[ run ../no_cxx11_hdr_typeindex_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_TYPE_TRAITS" : +[ run ../no_cxx11_hdr_type_traits_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_type_traits_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_UNORDERED_MAP" : +[ run ../no_cxx11_hdr_unordered_map_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_unordered_map_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_UNORDERED_SET" : +[ run ../no_cxx11_hdr_unordered_set_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_unordered_set_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_INLINE_NAMESPACES" : +[ run ../no_cxx11_inline_namespaces_pass.cpp ] +[ compile-fail ../no_cxx11_inline_namespaces_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS" : +[ run ../no_cxx11_non_pub_def_fun_pass.cpp ] +[ compile-fail ../no_cxx11_non_pub_def_fun_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_NUMERIC_LIMITS" : +[ run ../no_cxx11_numeric_limits_pass.cpp ] +[ compile-fail ../no_cxx11_numeric_limits_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_REF_QUALIFIERS" : +[ run ../no_cxx11_ref_qualifiers_pass.cpp ] +[ compile-fail ../no_cxx11_ref_qualifiers_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_SMART_PTR" : +[ run ../no_cxx11_smart_ptr_pass.cpp ] +[ compile-fail ../no_cxx11_smart_ptr_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_STD_ALIGN" : +[ run ../no_cxx11_std_align_pass.cpp ] +[ compile-fail ../no_cxx11_std_align_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_TRAILING_RESULT_TYPES" : +[ run ../no_cxx11_trailing_result_types_pass.cpp ] +[ compile-fail ../no_cxx11_trailing_result_types_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_USER_DEFINED_LITERALS" : +[ run ../no_cxx11_user_lit_pass.cpp ] +[ compile-fail ../no_cxx11_user_lit_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_BINARY_LITERALS" : +[ run ../no_cxx14_binary_literals_pass.cpp ] +[ compile-fail ../no_cxx14_binary_literals_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_CONSTEXPR" : +[ run ../no_cxx14_constexpr_pass.cpp ] +[ compile-fail ../no_cxx14_constexpr_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_DECLTYPE_AUTO" : +[ run ../no_cxx14_decltype_auto_pass.cpp ] +[ compile-fail ../no_cxx14_decltype_auto_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_DIGIT_SEPARATOR" : +[ run ../no_cxx14_digit_separator_pass.cpp ] +[ compile-fail ../no_cxx14_digit_separator_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_GENERIC_LAMBDAS" : +[ run ../no_cxx14_generic_lambda_pass.cpp ] +[ compile-fail ../no_cxx14_generic_lambda_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES" : +[ run ../no_cxx14_lambda_capture_pass.cpp ] +[ compile-fail ../no_cxx14_lambda_capture_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_AGGREGATE_NSDMI" : +[ run ../no_cxx14_member_init_pass.cpp ] +[ compile-fail ../no_cxx14_member_init_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION" : +[ run ../no_cxx14_return_type_ded_pass.cpp ] +[ compile-fail ../no_cxx14_return_type_ded_fail.cpp ] ; +test-suite "BOOST_NO_CXX14_VARIABLE_TEMPLATES" : +[ run ../no_cxx14_var_templ_pass.cpp ] +[ compile-fail ../no_cxx14_var_templ_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_FUNCTIONAL" : +[ run ../no_cxx_hdr_functional_pass.cpp ] +[ compile-fail ../no_cxx_hdr_functional_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_DECLTYPE" : +[ run ../no_decltype_pass.cpp ] +[ compile-fail ../no_decltype_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_DECLTYPE_N3276" : +[ run ../no_decltype_n3276_pass.cpp ] +[ compile-fail ../no_decltype_n3276_fail.cpp ] ; +test-suite "BOOST_DEDUCED_TYPENAME" : +[ run ../no_ded_typename_pass.cpp ] +[ compile-fail ../no_ded_typename_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_DEFAULTED_FUNCTIONS" : +[ run ../no_defaulted_functions_pass.cpp ] +[ compile-fail ../no_defaulted_functions_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_DELETED_FUNCTIONS" : +[ run ../no_deleted_functions_pass.cpp ] +[ compile-fail ../no_deleted_functions_fail.cpp ] ; +test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" : +[ run ../no_dep_nested_class_pass.cpp ] +[ compile-fail ../no_dep_nested_class_fail.cpp ] ; +test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" : +[ run ../no_dep_val_param_pass.cpp ] +[ compile-fail ../no_dep_val_param_fail.cpp ] ; +test-suite "BOOST_NO_EXCEPTIONS" : +[ run ../no_exceptions_pass.cpp ] +[ compile-fail ../no_exceptions_fail.cpp ] ; +test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" : +[ run ../no_excep_std_pass.cpp ] +[ compile-fail ../no_excep_std_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" : +[ run ../no_explicit_cvt_ops_pass.cpp ] +[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ; +test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" : +[ run ../no_exp_func_tem_arg_pass.cpp ] +[ compile-fail ../no_exp_func_tem_arg_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_EXTERN_TEMPLATE" : +[ run ../no_extern_template_pass.cpp ] +[ compile-fail ../no_extern_template_fail.cpp ] ; +test-suite "BOOST_NO_FENV_H" : +[ run ../no_fenv_h_pass.cpp ] +[ compile-fail ../no_fenv_h_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS" : +[ run ../no_fixed_len_variadic_templates_pass.cpp ] +[ compile-fail ../no_fixed_len_variadic_templates_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS" : +[ run ../no_function_template_default_args_pass.cpp ] +[ compile-fail ../no_function_template_default_args_fail.cpp ] ; +test-suite "BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS" : +[ run ../no_function_type_spec_pass.cpp ] +[ compile-fail ../no_function_type_spec_fail.cpp ] ; test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" : [ run ../no_func_tmp_order_pass.cpp ] [ compile-fail ../no_func_tmp_order_fail.cpp ] ; -test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" : -[ run ../has_part_alloc_pass.cpp ] -[ compile-fail ../has_part_alloc_fail.cpp ] ; +test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" : +[ run ../no_i64_limits_pass.cpp ] +[ compile-fail ../no_i64_limits_fail.cpp ] ; +test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" : +[ run ../no_inline_memb_init_pass.cpp ] +[ compile-fail ../no_inline_memb_init_fail.cpp ] ; +test-suite "BOOST_NO_INTEGRAL_INT64_T" : +[ run ../no_integral_int64_t_pass.cpp ] +[ compile-fail ../no_integral_int64_t_fail.cpp ] ; +test-suite "BOOST_NO_IOSFWD" : +[ run ../no_iosfwd_pass.cpp ] +[ compile-fail ../no_iosfwd_fail.cpp ] ; +test-suite "BOOST_NO_IOSTREAM" : +[ run ../no_iostream_pass.cpp ] +[ compile-fail ../no_iostream_fail.cpp ] ; +test-suite "BOOST_NO_IS_ABSTRACT" : +[ run ../no_is_abstract_pass.cpp ] +[ compile-fail ../no_is_abstract_fail.cpp ] ; +test-suite "BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS" : +[ run ../no_iter_construct_pass.cpp ] +[ compile-fail ../no_iter_construct_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_LAMBDAS" : +[ run ../no_lambdas_pass.cpp ] +[ compile-fail ../no_lambdas_fail.cpp ] ; +test-suite "BOOST_NO_LIMITS" : +[ run ../no_limits_pass.cpp ] +[ compile-fail ../no_limits_fail.cpp ] ; +test-suite "BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS" : +[ run ../no_limits_const_exp_pass.cpp ] +[ compile-fail ../no_limits_const_exp_fail.cpp ] ; +test-suite "BOOST_NO_LONG_LONG_NUMERIC_LIMITS" : +[ run ../no_ll_limits_pass.cpp ] +[ compile-fail ../no_ll_limits_fail.cpp ] ; +test-suite "BOOST_NO_LONG_LONG" : +[ run ../no_long_long_pass.cpp ] +[ compile-fail ../no_long_long_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" : +[ run ../no_mem_func_spec_pass.cpp ] +[ compile-fail ../no_mem_func_spec_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_TEMPLATES" : +[ run ../no_mem_templates_pass.cpp ] +[ compile-fail ../no_mem_templates_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" : +[ run ../no_mem_templ_frnds_pass.cpp ] +[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" : +[ run ../no_mem_tem_keyword_pass.cpp ] +[ compile-fail ../no_mem_tem_keyword_fail.cpp ] ; +test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" : +[ run ../no_mem_tem_pnts_pass.cpp ] +[ compile-fail ../no_mem_tem_pnts_fail.cpp ] ; +test-suite "BOOST_NO_NESTED_FRIENDSHIP" : +[ run ../no_nested_friendship_pass.cpp ] +[ compile-fail ../no_nested_friendship_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_NOEXCEPT" : +[ run ../no_noexcept_pass.cpp ] +[ compile-fail ../no_noexcept_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_NULLPTR" : +[ run ../no_nullptr_pass.cpp ] +[ compile-fail ../no_nullptr_fail.cpp ] ; +test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" : +[ run ../no_ops_in_namespace_pass.cpp ] +[ compile-fail ../no_ops_in_namespace_fail.cpp ] ; +test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" : +[ run ../no_partial_spec_pass.cpp ] +[ compile-fail ../no_partial_spec_fail.cpp ] ; +test-suite "BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS" : +[ run ../no_part_spec_def_args_pass.cpp ] +[ compile-fail ../no_part_spec_def_args_fail.cpp ] ; +test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" : +[ run ../no_priv_aggregate_pass.cpp ] +[ compile-fail ../no_priv_aggregate_fail.cpp ] ; +test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" : +[ run ../no_ptr_mem_const_pass.cpp ] +[ compile-fail ../no_ptr_mem_const_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_RANGE_BASED_FOR" : +[ run ../no_range_based_for_pass.cpp ] +[ compile-fail ../no_range_based_for_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_RAW_LITERALS" : +[ run ../no_raw_literals_pass.cpp ] +[ compile-fail ../no_raw_literals_fail.cpp ] ; +test-suite "BOOST_NO_UNREACHABLE_RETURN_DETECTION" : +[ run ../no_ret_det_pass.cpp ] +[ compile-fail ../no_ret_det_fail.cpp ] ; +test-suite "BOOST_NO_RTTI" : +[ run ../no_rtti_pass.cpp ] +[ compile-fail ../no_rtti_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_RVALUE_REFERENCES" : +[ run ../no_rvalue_references_pass.cpp ] +[ compile-fail ../no_rvalue_references_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_SCOPED_ENUMS" : +[ run ../no_scoped_enums_pass.cpp ] +[ compile-fail ../no_scoped_enums_fail.cpp ] ; +test-suite "BOOST_NO_SFINAE" : +[ run ../no_sfinae_pass.cpp ] +[ compile-fail ../no_sfinae_fail.cpp ] ; +test-suite "BOOST_NO_SFINAE_EXPR" : +[ run ../no_sfinae_expr_pass.cpp ] +[ compile-fail ../no_sfinae_expr_fail.cpp ] ; +test-suite "BOOST_NO_STRINGSTREAM" : +[ run ../no_sstream_pass.cpp ] +[ compile-fail ../no_sstream_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_STATIC_ASSERT" : +[ run ../no_static_assert_pass.cpp ] +[ compile-fail ../no_static_assert_fail.cpp ] ; +test-suite "BOOST_NO_STDC_NAMESPACE" : +[ run ../no_stdc_namespace_pass.cpp ] +[ compile-fail ../no_stdc_namespace_fail.cpp ] ; +test-suite "BOOST_NO_STD_ALLOCATOR" : +[ run ../no_std_allocator_pass.cpp ] +[ compile-fail ../no_std_allocator_fail.cpp ] ; +test-suite "BOOST_NO_STD_DISTANCE" : +[ run ../no_std_distance_pass.cpp ] +[ compile-fail ../no_std_distance_fail.cpp ] ; +test-suite "BOOST_NO_STD_ITERATOR" : +[ run ../no_std_iterator_pass.cpp ] +[ compile-fail ../no_std_iterator_fail.cpp ] ; +test-suite "BOOST_NO_STD_ITERATOR_TRAITS" : +[ run ../no_std_iter_traits_pass.cpp ] +[ compile-fail ../no_std_iter_traits_fail.cpp ] ; +test-suite "BOOST_NO_STD_LOCALE" : +[ run ../no_std_locale_pass.cpp ] +[ compile-fail ../no_std_locale_fail.cpp ] ; +test-suite "BOOST_NO_STD_MESSAGES" : +[ run ../no_std_messages_pass.cpp ] +[ compile-fail ../no_std_messages_fail.cpp ] ; +test-suite "BOOST_NO_STD_MIN_MAX" : +[ run ../no_std_min_max_pass.cpp ] +[ compile-fail ../no_std_min_max_fail.cpp ] ; +test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" : +[ run ../no_std_oi_assign_pass.cpp ] +[ compile-fail ../no_std_oi_assign_fail.cpp ] ; +test-suite "BOOST_NO_STD_TYPEINFO" : +[ run ../no_std_typeinfo_pass.cpp ] +[ compile-fail ../no_std_typeinfo_fail.cpp ] ; +test-suite "BOOST_NO_STD_USE_FACET" : +[ run ../no_std_use_facet_pass.cpp ] +[ compile-fail ../no_std_use_facet_fail.cpp ] ; +test-suite "BOOST_NO_STD_WSTREAMBUF" : +[ run ../no_std_wstreambuf_pass.cpp ] +[ compile-fail ../no_std_wstreambuf_fail.cpp ] ; +test-suite "BOOST_NO_STD_WSTRING" : +[ run ../no_std_wstring_pass.cpp ] +[ compile-fail ../no_std_wstring_fail.cpp ] ; +test-suite "BOOST_NO_SWPRINTF" : +[ run ../no_swprintf_pass.cpp ] +[ compile-fail ../no_swprintf_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_TEMPLATE_ALIASES" : +[ run ../no_template_aliases_pass.cpp ] +[ compile-fail ../no_template_aliases_fail.cpp ] ; +test-suite "BOOST_NO_TEMPLATED_IOSTREAMS" : +[ run ../no_template_streams_pass.cpp ] +[ compile-fail ../no_template_streams_fail.cpp ] ; +test-suite "BOOST_NO_TEMPLATE_TEMPLATES" : +[ run ../no_template_template_pass.cpp ] +[ compile-fail ../no_template_template_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS" : +[ run ../no_tem_local_classes_pass.cpp ] +[ compile-fail ../no_tem_local_classes_fail.cpp ] ; +test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" : +[ run ../no_two_phase_lookup_pass.cpp ] +[ compile-fail ../no_two_phase_lookup_fail.cpp ] ; test-suite "BOOST_NO_TYPEID" : [ run ../no_typeid_pass.cpp ] [ compile-fail ../no_typeid_fail.cpp ] ; test-suite "BOOST_NO_TYPENAME_WITH_CTOR" : [ run ../no_typename_with_ctor_pass.cpp ] [ compile-fail ../no_typename_with_ctor_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_ARRAY" : -[ run ../no_cxx11_hdr_array_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_array_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_MEM_FN" : -[ run ../has_tr1_mem_fn_pass.cpp ] -[ compile-fail ../has_tr1_mem_fn_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_ALIGNAS" : -[ run ../no_cxx11_alignas_pass.cpp ] -[ compile-fail ../no_cxx11_alignas_fail.cpp ] ; -test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" : -[ run ../no_using_decl_overld_pass.cpp ] -[ compile-fail ../no_using_decl_overld_fail.cpp ] ; -test-suite "BOOST_HAS_PTHREAD_YIELD" : -[ run ../has_pthread_yield_pass.cpp ] -[ compile-fail ../has_pthread_yield_fail.cpp ] ; -test-suite "BOOST_NO_INCLASS_MEMBER_INITIALIZATION" : -[ run ../no_inline_memb_init_pass.cpp ] -[ compile-fail ../no_inline_memb_init_fail.cpp ] ; -test-suite "BOOST_NO_STD_TYPEINFO" : -[ run ../no_std_typeinfo_pass.cpp ] -[ compile-fail ../no_std_typeinfo_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_VARIADIC_MACROS" : -[ run ../no_variadic_macros_pass.cpp ] -[ compile-fail ../no_variadic_macros_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_UNICODE_LITERALS" : +[ run ../no_unicode_literals_pass.cpp ] +[ compile-fail ../no_unicode_literals_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_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 ] ; -test-suite "BOOST_NO_STD_WSTRING" : -[ run ../no_std_wstring_pass.cpp ] -[ compile-fail ../no_std_wstring_fail.cpp ] ; -test-suite "BOOST_NO_CTYPE_FUNCTIONS" : -[ run ../no_ctype_functions_pass.cpp ] -[ compile-fail ../no_ctype_functions_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_NULLPTR" : -[ run ../no_nullptr_pass.cpp ] -[ compile-fail ../no_nullptr_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" : -[ run ../no_mem_tem_keyword_pass.cpp ] -[ compile-fail ../no_mem_tem_keyword_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_RVALUE_REFERENCES" : -[ run ../no_rvalue_references_pass.cpp ] -[ compile-fail ../no_rvalue_references_fail.cpp ] ; -test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" : -[ run ../no_priv_aggregate_pass.cpp ] -[ compile-fail ../no_priv_aggregate_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_ALLOCATOR" : -[ run ../no_cxx11_allocator_pass.cpp ] -[ compile-fail ../no_cxx11_allocator_fail.cpp ] ; -test-suite "BOOST_NO_SWPRINTF" : -[ run ../no_swprintf_pass.cpp ] -[ compile-fail ../no_swprintf_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_FINAL" : -[ run ../no_cxx11_final_pass.cpp ] -[ compile-fail ../no_cxx11_final_fail.cpp ] ; -test-suite "BOOST_NO_STDC_NAMESPACE" : -[ run ../no_stdc_namespace_pass.cpp ] -[ compile-fail ../no_stdc_namespace_fail.cpp ] ; -test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" : -[ run ../no_two_phase_lookup_pass.cpp ] -[ compile-fail ../no_two_phase_lookup_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_FORWARD_LIST" : -[ run ../no_cxx11_hdr_forward_list_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_forward_list_fail.cpp ] ; -test-suite "BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN" : -[ run ../no_std_oi_assign_pass.cpp ] -[ compile-fail ../no_std_oi_assign_fail.cpp ] ; -test-suite "BOOST_HAS_TR1_UTILITY" : -[ run ../has_tr1_utility_pass.cpp ] -[ compile-fail ../has_tr1_utility_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS" : -[ run ../no_cxx11_non_pub_def_fun_pass.cpp ] -[ compile-fail ../no_cxx11_non_pub_def_fun_fail.cpp ] ; -test-suite "BOOST_HAS_DIRENT_H" : -[ run ../has_dirent_h_pass.cpp ] -[ compile-fail ../has_dirent_h_fail.cpp ] ; -test-suite "BOOST_NO_NESTED_FRIENDSHIP" : -[ run ../no_nested_friendship_pass.cpp ] -[ compile-fail ../no_nested_friendship_fail.cpp ] ; -test-suite "BOOST_NO_POINTER_TO_MEMBER_CONST" : -[ run ../no_ptr_mem_const_pass.cpp ] -[ compile-fail ../no_ptr_mem_const_fail.cpp ] ; -test-suite "BOOST_HAS_FTIME" : -[ run ../has_ftime_pass.cpp ] -[ compile-fail ../has_ftime_fail.cpp ] ; +test-suite "BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE" : +[ run ../no_using_decl_overld_pass.cpp ] +[ compile-fail ../no_using_decl_overld_fail.cpp ] ; +test-suite "BOOST_NO_USING_TEMPLATE" : +[ run ../no_using_template_pass.cpp ] +[ compile-fail ../no_using_template_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_VARIADIC_MACROS" : +[ run ../no_variadic_macros_pass.cpp ] +[ compile-fail ../no_variadic_macros_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_VARIADIC_TEMPLATES" : +[ run ../no_variadic_templates_pass.cpp ] +[ compile-fail ../no_variadic_templates_fail.cpp ] ; +test-suite "BOOST_NO_VOID_RETURNS" : +[ run ../no_void_returns_pass.cpp ] +[ compile-fail ../no_void_returns_fail.cpp ] ; +test-suite "BOOST_NO_INTRINSIC_WCHAR_T" : +[ run ../no_wchar_t_pass.cpp ] +[ compile-fail ../no_wchar_t_fail.cpp ] ; diff --git a/test/boost_no_cxx14_binary_literals.ipp b/test/boost_no_cxx14_binary_literals.ipp new file mode 100644 index 00000000..326d5b03 --- /dev/null +++ b/test/boost_no_cxx14_binary_literals.ipp @@ -0,0 +1,23 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_BINARY_LITERALS +// TITLE: C++14 binary literals unavailable +// DESCRIPTION: The compiler does not support C++14 binary literals + +namespace boost_no_cxx14_binary_literals +{ + +int test() +{ + return ((int)0b01000010 == (int)0x42) ? 0 : 1; +} + +} + diff --git a/test/boost_no_cxx14_constexpr.ipp b/test/boost_no_cxx14_constexpr.ipp new file mode 100644 index 00000000..1e8918bf --- /dev/null +++ b/test/boost_no_cxx14_constexpr.ipp @@ -0,0 +1,35 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_CONSTEXPR +// TITLE: C++14 relaxed constexpr unavailable +// DESCRIPTION: The compiler does not support C++14 relaxed constexpr + +namespace boost_no_cxx14_constexpr +{ + +constexpr void decrement(int &value) +{ + --value; +} + +constexpr int zero() +{ + int ret = 1; + decrement(ret); + return ret; +} + +int test() +{ + return zero(); +} + +} + diff --git a/test/boost_no_cxx14_decltype_auto.ipp b/test/boost_no_cxx14_decltype_auto.ipp new file mode 100644 index 00000000..4f538dcc --- /dev/null +++ b/test/boost_no_cxx14_decltype_auto.ipp @@ -0,0 +1,33 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_DECLTYPE_AUTO +// TITLE: C++14 decltype(auto) unavailable +// DESCRIPTION: The compiler does not support C++14 decltype(auto) + +namespace boost_no_cxx14_decltype_auto +{ + +void quiet_warning(int){} + +const int &foo(const int &x) +{ + return x; +} + +int test() +{ + int j; + decltype(auto) x = foo(j); + quiet_warning(x); + return 0; +} + +} + diff --git a/test/boost_no_cxx14_digit_separator.ipp b/test/boost_no_cxx14_digit_separator.ipp new file mode 100644 index 00000000..510d2c33 --- /dev/null +++ b/test/boost_no_cxx14_digit_separator.ipp @@ -0,0 +1,23 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_DIGIT_SEPARATOR +// TITLE: C++14 digit separator unavailable +// DESCRIPTION: The compiler does not support C++14 digit separator + +namespace boost_no_cxx14_digit_separator +{ + +int test() +{ + return 0'0; +} + +} + diff --git a/test/boost_no_cxx14_generic_lambda.ipp b/test/boost_no_cxx14_generic_lambda.ipp new file mode 100644 index 00000000..e271ef5b --- /dev/null +++ b/test/boost_no_cxx14_generic_lambda.ipp @@ -0,0 +1,23 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_GENERIC_LAMBDAS +// TITLE: C++14 generic lambda unavailable +// DESCRIPTION: The compiler does not support C++14 generic lambda + +namespace boost_no_cxx14_generic_lambdas +{ + +int test() +{ + return [](auto ret) { return ret; } (0); +} + +} + diff --git a/test/boost_no_cxx14_lambda_capture.ipp b/test/boost_no_cxx14_lambda_capture.ipp new file mode 100644 index 00000000..a7887366 --- /dev/null +++ b/test/boost_no_cxx14_lambda_capture.ipp @@ -0,0 +1,23 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +// TITLE: C++14 initialized lambda capture unavailable +// DESCRIPTION: The compiler does not support C++14 initialized lambda capture + +namespace boost_no_cxx14_initialized_lambda_captures +{ + +int test() +{ + return [ret = 0] { return ret; } (); +} + +} + diff --git a/test/boost_no_cxx14_member_init.ipp b/test/boost_no_cxx14_member_init.ipp new file mode 100644 index 00000000..2b6c77b4 --- /dev/null +++ b/test/boost_no_cxx14_member_init.ipp @@ -0,0 +1,30 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_AGGREGATE_NSDMI +// TITLE: C++14 member initializers unavailable +// DESCRIPTION: The compiler does not support C++14 member initializers + +namespace boost_no_cxx14_aggregate_nsdmi +{ + +struct S +{ + int x; + int y = 0; +}; + +int test() +{ + S s[] = { { 0x72 }, { 0x42 } }; + return s[1].x - 0x42; +} + +} + diff --git a/test/boost_no_cxx14_return_type_ded.ipp b/test/boost_no_cxx14_return_type_ded.ipp new file mode 100644 index 00000000..37656731 --- /dev/null +++ b/test/boost_no_cxx14_return_type_ded.ipp @@ -0,0 +1,29 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +// TITLE: C++14 return type deduction unavailable +// DESCRIPTION: The compiler does not support C++14 return type deduction + +namespace boost_no_cxx14_return_type_deduction +{ + +template +auto deduced_abs(T x) +{ + return x > 0 ? x : -x; +} + +int test() +{ + return deduced_abs(2) - deduced_abs(-2); +} + +} + diff --git a/test/boost_no_cxx14_var_templ.ipp b/test/boost_no_cxx14_var_templ.ipp new file mode 100644 index 00000000..7162dac7 --- /dev/null +++ b/test/boost_no_cxx14_var_templ.ipp @@ -0,0 +1,26 @@ + +// (C) Copyright Kohei Takahashi 2014 + +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for more information. + +// MACRO: BOOST_NO_CXX14_VARIABLE_TEMPLATES +// TITLE: C++14 variable templates unavailable +// DESCRIPTION: The compiler does not support C++14 variable templates + +namespace boost_no_cxx14_variable_templates +{ + +template +T zero = static_cast(0); + +int test() +{ + return zero; +} + +} + diff --git a/test/config_info.cpp b/test/config_info.cpp index 8d1cb4a7..803a5250 100644 --- a/test/config_info.cpp +++ b/test/config_info.cpp @@ -1055,6 +1055,15 @@ void print_boost_macros() PRINT_MACRO(BOOST_NO_CXX11_USER_DEFINED_LITERALS); PRINT_MACRO(BOOST_NO_CXX11_VARIADIC_MACROS); PRINT_MACRO(BOOST_NO_CXX11_VARIADIC_TEMPLATES); + PRINT_MACRO(BOOST_NO_CXX14_AGGREGATE_NSDMI); + PRINT_MACRO(BOOST_NO_CXX14_BINARY_LITERALS); + PRINT_MACRO(BOOST_NO_CXX14_CONSTEXPR); + PRINT_MACRO(BOOST_NO_CXX14_DECLTYPE_AUTO); + PRINT_MACRO(BOOST_NO_CXX14_DIGIT_SEPARATOR); + PRINT_MACRO(BOOST_NO_CXX14_GENERIC_LAMBDAS); + PRINT_MACRO(BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES); + PRINT_MACRO(BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION); + PRINT_MACRO(BOOST_NO_CXX14_VARIABLE_TEMPLATES); PRINT_MACRO(BOOST_NO_DEPENDENT_NESTED_DERIVATIONS); PRINT_MACRO(BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS); PRINT_MACRO(BOOST_NO_EXCEPTIONS); @@ -1113,31 +1122,6 @@ void print_boost_macros() PRINT_MACRO(BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE); PRINT_MACRO(BOOST_NO_USING_TEMPLATE); PRINT_MACRO(BOOST_NO_VOID_RETURNS); - - - - - - - - - - - - - - - - - - - - - - - - - // END GENERATED BLOCK PRINT_MACRO(BOOST_INTEL); diff --git a/test/config_test.cpp b/test/config_test.cpp index 32d7f404..20b51680 100644 --- a/test/config_test.cpp +++ b/test/config_test.cpp @@ -1,4 +1,4 @@ -// This file was automatically generated on Mon Aug 25 18:12:27 2014 +// This file was automatically generated on Sat Oct 11 19:26:21 2014 // by libs/config/tools/generate.cpp // Copyright John Maddock 2002-4. // Use, modification and distribution are subject to the @@ -22,536 +22,651 @@ int error_count = 0; -#ifndef BOOST_NO_CXX11_DECLTYPE -#include "boost_no_decltype.ipp" -#else -namespace boost_no_cxx11_decltype = empty_boost; -#endif -#ifndef BOOST_NO_SFINAE -#include "boost_no_sfinae.ipp" -#else -namespace boost_no_sfinae = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS -#include "boost_no_cxx11_hdr_type_traits.ipp" -#else -namespace boost_no_cxx11_hdr_type_traits = empty_boost; -#endif -#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS -#include "boost_no_array_type_spec.ipp" -#else -namespace boost_no_array_type_specializations = empty_boost; -#endif -#ifndef BOOST_NO_STD_ITERATOR_TRAITS -#include "boost_no_std_iter_traits.ipp" -#else -namespace boost_no_std_iterator_traits = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP -#include "boost_no_cxx11_hdr_unordered_map.ipp" -#else -namespace boost_no_cxx11_hdr_unordered_map = empty_boost; -#endif -#ifndef BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS -#include "boost_no_mem_tem_pnts.ipp" -#else -namespace boost_no_pointer_to_member_template_parameters = empty_boost; -#endif -#ifndef BOOST_NO_IS_ABSTRACT -#include "boost_no_is_abstract.ipp" -#else -namespace boost_no_is_abstract = empty_boost; -#endif -#ifndef BOOST_NO_TEMPLATED_IOSTREAMS -#include "boost_no_template_streams.ipp" -#else -namespace boost_no_templated_iostreams = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_INLINE_NAMESPACES -#include "boost_no_cxx11_inline_namespaces.ipp" -#else -namespace boost_no_cxx11_inline_namespaces = empty_boost; -#endif -#ifndef BOOST_NO_FENV_H -#include "boost_no_fenv_h.ipp" -#else -namespace boost_no_fenv_h = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX -#include "boost_no_cxx11_hdr_typeindex.ipp" -#else -namespace boost_no_cxx11_hdr_typeindex = empty_boost; -#endif -#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE -#include "boost_no_excep_std.ipp" -#else -namespace boost_no_exception_std_namespace = empty_boost; -#endif -#ifndef BOOST_NO_INTEGRAL_INT64_T -#include "boost_no_integral_int64_t.ipp" -#else -namespace boost_no_integral_int64_t = empty_boost; -#endif -#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS -#include "boost_no_limits_const_exp.ipp" -#else -namespace boost_no_limits_compile_time_constants = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX -#include "boost_no_unified_init.ipp" -#else -namespace boost_no_cxx11_unified_initialization_syntax = empty_boost; -#endif -#ifndef BOOST_NO_STD_MIN_MAX -#include "boost_no_std_min_max.ipp" -#else -namespace boost_no_std_min_max = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_USER_DEFINED_LITERALS -#include "boost_no_cxx11_user_lit.ipp" -#else -namespace boost_no_cxx11_user_defined_literals = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_RATIO -#include "boost_no_cxx11_hdr_ratio.ipp" -#else -namespace boost_no_cxx11_hdr_ratio = empty_boost; -#endif -#ifndef BOOST_NO_COMPLETE_VALUE_INITIALIZATION -#include "boost_no_com_value_init.ipp" -#else -namespace boost_no_complete_value_initialization = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_ADDRESSOF -#include "boost_no_cxx11_addressof.ipp" -#else -namespace boost_no_cxx11_addressof = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL -#include "boost_no_cxx_hdr_functional.ipp" -#else -namespace boost_no_cxx11_hdr_functional = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_DECLTYPE_N3276 -#include "boost_no_decltype_n3276.ipp" -#else -namespace boost_no_cxx11_decltype_n3276 = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -#include "boost_no_tem_local_classes.ipp" -#else -namespace boost_no_cxx11_local_class_template_parameters = empty_boost; -#endif -#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS -#include "boost_no_mem_func_spec.ipp" -#else -namespace boost_no_member_function_specializations = empty_boost; -#endif -#ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS -#include "boost_no_part_spec_def_args.ipp" -#else -namespace boost_no_partial_specialization_implicit_default_args = empty_boost; -#endif -#ifndef BOOST_NO_STD_WSTREAMBUF -#include "boost_no_std_wstreambuf.ipp" -#else -namespace boost_no_std_wstreambuf = empty_boost; -#endif -#ifndef BOOST_NO_LONG_LONG -#include "boost_no_long_long.ipp" -#else -namespace boost_no_long_long = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE -#include "boost_no_extern_template.ipp" -#else -namespace boost_no_cxx11_extern_template = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_CONSTEXPR -#include "boost_no_constexpr.ipp" -#else -namespace boost_no_cxx11_constexpr = empty_boost; -#endif -#ifndef BOOST_NO_INTRINSIC_WCHAR_T -#include "boost_no_wchar_t.ipp" -#else -namespace boost_no_intrinsic_wchar_t = empty_boost; -#endif -#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE -#include "boost_no_ops_in_namespace.ipp" -#else -namespace boost_no_operators_in_namespace = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS -#include "boost_no_deleted_functions.ipp" -#else -namespace boost_no_cxx11_deleted_functions = empty_boost; -#endif -#ifndef BOOST_NO_IOSFWD -#include "boost_no_iosfwd.ipp" -#else -namespace boost_no_iosfwd = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS -#include "boost_no_cxx11_numeric_limits.ipp" -#else -namespace boost_no_cxx11_numeric_limits = empty_boost; -#endif -#ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION -#include "boost_no_ret_det.ipp" -#else -namespace boost_no_unreachable_return_detection = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES -#include "boost_no_variadic_templates.ipp" -#else -namespace boost_no_cxx11_variadic_templates = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_NOEXCEPT -#include "boost_no_noexcept.ipp" -#else -namespace boost_no_cxx11_noexcept = empty_boost; -#endif -#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS -#include "boost_no_cv_void_spec.ipp" -#else -namespace boost_no_cv_void_specializations = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST -#include "boost_no_cxx11_hdr_initializer_list.ipp" -#else -namespace boost_no_cxx11_hdr_initializer_list = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS -#include "boost_no_function_template_default_args.ipp" -#else -namespace boost_no_cxx11_function_template_default_args = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_LAMBDAS -#include "boost_no_lambdas.ipp" -#else -namespace boost_no_cxx11_lambdas = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS -#include "boost_no_defaulted_functions.ipp" -#else -namespace boost_no_cxx11_defaulted_functions = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_CHAR32_T -#include "boost_no_char32_t.ipp" -#else -namespace boost_no_cxx11_char32_t = empty_boost; -#endif -#ifndef BOOST_NO_EXCEPTIONS -#include "boost_no_exceptions.ipp" -#else -namespace boost_no_exceptions = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_FUTURE -#include "boost_no_cxx11_hdr_future.ipp" -#else -namespace boost_no_cxx11_hdr_future = empty_boost; -#endif -#ifndef BOOST_NO_CV_SPECIALIZATIONS -#include "boost_no_cv_spec.ipp" -#else -namespace boost_no_cv_specializations = empty_boost; -#endif -#ifndef BOOST_NO_STD_LOCALE -#include "boost_no_std_locale.ipp" -#else -namespace boost_no_std_locale = empty_boost; -#endif -#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS -#include "boost_no_dep_val_param.ipp" -#else -namespace boost_no_dependent_types_in_template_value_parameters = empty_boost; -#endif -#ifndef BOOST_NO_USING_TEMPLATE -#include "boost_no_using_template.ipp" -#else -namespace boost_no_using_template = empty_boost; -#endif -#ifndef BOOST_NO_LIMITS -#include "boost_no_limits.ipp" -#else -namespace boost_no_limits = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_THREAD -#include "boost_no_cxx11_hdr_thread.ipp" -#else -namespace boost_no_cxx11_hdr_thread = empty_boost; -#endif -#ifndef BOOST_NO_RTTI -#include "boost_no_rtti.ipp" -#else -namespace boost_no_rtti = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS -#include "boost_no_fixed_len_variadic_templates.ipp" -#else -namespace boost_no_cxx11_fixed_length_variadic_template_expansion_packs = empty_boost; -#endif -#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS -#include "boost_no_ll_limits.ipp" -#else -namespace boost_no_long_long_numeric_limits = empty_boost; -#endif -#ifndef BOOST_NO_CWCTYPE -#include "boost_no_cwctype.ipp" -#else -namespace boost_no_cwctype = empty_boost; -#endif -#ifndef BOOST_DEDUCED_TYPENAME -#include "boost_no_ded_typename.ipp" -#else -namespace boost_deduced_typename = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE -#include "boost_no_cxx11_hdr_condition_variable.ipp" -#else -namespace boost_no_cxx11_hdr_condition_variable = empty_boost; -#endif -#ifndef BOOST_NO_STRINGSTREAM -#include "boost_no_sstream.ipp" -#else -namespace boost_no_stringstream = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_SYSTEM_ERROR -#include "boost_no_cxx11_hdr_system_error.ipp" -#else -namespace boost_no_cxx11_hdr_system_error = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_TRAILING_RESULT_TYPES -#include "boost_no_cxx11_trailing_result_types.ipp" -#else -namespace boost_no_cxx11_trailing_result_types = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_ATOMIC -#include "boost_no_cxx11_hdr_atomic.ipp" -#else -namespace boost_no_cxx11_hdr_atomic = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_STD_ALIGN -#include "boost_no_cxx11_std_align.ipp" -#else -namespace boost_no_cxx11_std_align = empty_boost; -#endif -#ifndef BOOST_NO_CWCHAR -#include "boost_no_cwchar.ipp" -#else -namespace boost_no_cwchar = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_MUTEX -#include "boost_no_cxx11_hdr_mutex.ipp" -#else -namespace boost_no_cxx11_hdr_mutex = empty_boost; -#endif -#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS -#include "boost_no_dep_nested_class.ipp" -#else -namespace boost_no_dependent_nested_derivations = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_REF_QUALIFIERS -#include "boost_no_cxx11_ref_qualifiers.ipp" -#else -namespace boost_no_cxx11_ref_qualifiers = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_CHRONO -#include "boost_no_cxx11_hdr_chrono.ipp" -#else -namespace boost_no_cxx11_hdr_chrono = empty_boost; -#endif -#ifndef BOOST_NO_STD_USE_FACET -#include "boost_no_std_use_facet.ipp" -#else -namespace boost_no_std_use_facet = empty_boost; -#endif -#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS -#include "boost_no_iter_construct.ipp" -#else -namespace boost_no_templated_iterator_constructors = empty_boost; -#endif -#ifndef BOOST_NO_STD_DISTANCE -#include "boost_no_std_distance.ipp" -#else -namespace boost_no_std_distance = empty_boost; -#endif -#ifndef BOOST_NO_TEMPLATE_TEMPLATES -#include "boost_no_template_template.ipp" -#else -namespace boost_no_template_templates = empty_boost; -#endif -#ifndef BOOST_NO_SFINAE_EXPR -#include "boost_no_sfinae_expr.ipp" -#else -namespace boost_no_sfinae_expr = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_CHAR16_T -#include "boost_no_char16_t.ipp" -#else -namespace boost_no_cxx11_char16_t = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_RANGE_BASED_FOR -#include "boost_no_range_based_for.ipp" -#else -namespace boost_no_cxx11_range_based_for = empty_boost; -#endif -#ifndef BOOST_NO_VOID_RETURNS -#include "boost_no_void_returns.ipp" -#else -namespace boost_no_void_returns = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_CODECVT -#include "boost_no_cxx11_hdr_codecvt.ipp" -#else -namespace boost_no_cxx11_hdr_codecvt = empty_boost; -#endif -#ifndef BOOST_NO_AUTO_PTR -#include "boost_no_auto_ptr.ipp" -#else -namespace boost_no_auto_ptr = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_REGEX -#include "boost_no_cxx11_hdr_regex.ipp" -#else -namespace boost_no_cxx11_hdr_regex = empty_boost; -#endif -#ifndef BOOST_NO_STD_MESSAGES -#include "boost_no_std_messages.ipp" -#else -namespace boost_no_std_messages = empty_boost; -#endif -#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG -#include "boost_no_bcb_partial_spec.ipp" -#else -namespace boost_bcb_partial_specialization_bug = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_UNORDERED_SET -#include "boost_no_cxx11_hdr_unordered_set.ipp" -#else -namespace boost_no_cxx11_hdr_unordered_set = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS -#include "boost_no_auto_multidecl.ipp" -#else -namespace boost_no_cxx11_auto_multideclarations = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_TUPLE -#include "boost_no_cxx11_hdr_tuple.ipp" -#else -namespace boost_no_cxx11_hdr_tuple = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_SMART_PTR -#include "boost_no_cxx11_smart_ptr.ipp" -#else -namespace boost_no_cxx11_smart_ptr = empty_boost; -#endif #ifndef BOOST_NO_ADL_BARRIER #include "boost_no_adl_barrier.ipp" #else namespace boost_no_adl_barrier = empty_boost; #endif -#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -#include "boost_no_explicit_cvt_ops.ipp" -#else -namespace boost_no_cxx11_explicit_conversion_operators = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS -#include "boost_no_auto_declarations.ipp" -#else -namespace boost_no_cxx11_auto_declarations = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_UNICODE_LITERALS -#include "boost_no_unicode_literals.ipp" -#else -namespace boost_no_cxx11_unicode_literals = empty_boost; -#endif -#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS -#include "boost_no_mem_templ_frnds.ipp" -#else -namespace boost_no_member_template_friends = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_SCOPED_ENUMS -#include "boost_no_scoped_enums.ipp" -#else -namespace boost_no_cxx11_scoped_enums = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_RAW_LITERALS -#include "boost_no_raw_literals.ipp" -#else -namespace boost_no_cxx11_raw_literals = empty_boost; -#endif -#ifndef BOOST_NO_IOSTREAM -#include "boost_no_iostream.ipp" -#else -namespace boost_no_iostream = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_ATOMIC_SMART_PTR -#include "boost_no_cxx11_atomic_sp.ipp" -#else -namespace boost_no_cxx11_atomic_smart_ptr = empty_boost; -#endif -#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION -#include "boost_no_partial_spec.ipp" -#else -namespace boost_no_template_partial_specialization = empty_boost; -#endif -#ifndef BOOST_NO_STD_ITERATOR -#include "boost_no_std_iterator.ipp" -#else -namespace boost_no_std_iterator = empty_boost; -#endif #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP #include "boost_no_arg_dep_lookup.ipp" #else namespace boost_no_argument_dependent_lookup = empty_boost; #endif -#ifndef BOOST_NO_STD_ALLOCATOR -#include "boost_no_std_allocator.ipp" +#ifndef BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS +#include "boost_no_array_type_spec.ipp" #else -namespace boost_no_std_allocator = empty_boost; +namespace boost_no_array_type_specializations = empty_boost; #endif -#ifndef BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS -#include "boost_no_function_type_spec.ipp" +#ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS +#include "boost_no_auto_declarations.ipp" #else -namespace boost_no_function_type_specializations = empty_boost; +namespace boost_no_cxx11_auto_declarations = empty_boost; #endif -#ifndef BOOST_NO_MEMBER_TEMPLATES -#include "boost_no_mem_templates.ipp" +#ifndef BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS +#include "boost_no_auto_multidecl.ipp" #else -namespace boost_no_member_templates = empty_boost; +namespace boost_no_cxx11_auto_multideclarations = empty_boost; #endif -#ifndef BOOST_NO_CXX11_STATIC_ASSERT -#include "boost_no_static_assert.ipp" +#ifndef BOOST_NO_AUTO_PTR +#include "boost_no_auto_ptr.ipp" #else -namespace boost_no_cxx11_static_assert = empty_boost; +namespace boost_no_auto_ptr = empty_boost; #endif -#ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES -#include "boost_no_template_aliases.ipp" +#ifndef BOOST_BCB_PARTIAL_SPECIALIZATION_BUG +#include "boost_no_bcb_partial_spec.ipp" #else -namespace boost_no_cxx11_template_aliases = empty_boost; +namespace boost_bcb_partial_specialization_bug = empty_boost; #endif -#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS -#include "boost_no_exp_func_tem_arg.ipp" +#ifndef BOOST_NO_CXX11_CHAR16_T +#include "boost_no_char16_t.ipp" #else -namespace boost_no_explicit_function_template_arguments = empty_boost; +namespace boost_no_cxx11_char16_t = empty_boost; #endif -#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS -#include "boost_no_i64_limits.ipp" +#ifndef BOOST_NO_CXX11_CHAR32_T +#include "boost_no_char32_t.ipp" #else -namespace boost_no_ms_int64_numeric_limits = empty_boost; +namespace boost_no_cxx11_char32_t = empty_boost; +#endif +#ifndef BOOST_NO_COMPLETE_VALUE_INITIALIZATION +#include "boost_no_com_value_init.ipp" +#else +namespace boost_no_complete_value_initialization = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_CONSTEXPR +#include "boost_no_constexpr.ipp" +#else +namespace boost_no_cxx11_constexpr = empty_boost; +#endif +#ifndef BOOST_NO_CTYPE_FUNCTIONS +#include "boost_no_ctype_functions.ipp" +#else +namespace boost_no_ctype_functions = empty_boost; +#endif +#ifndef BOOST_NO_CV_SPECIALIZATIONS +#include "boost_no_cv_spec.ipp" +#else +namespace boost_no_cv_specializations = empty_boost; +#endif +#ifndef BOOST_NO_CV_VOID_SPECIALIZATIONS +#include "boost_no_cv_void_spec.ipp" +#else +namespace boost_no_cv_void_specializations = empty_boost; +#endif +#ifndef BOOST_NO_CWCHAR +#include "boost_no_cwchar.ipp" +#else +namespace boost_no_cwchar = empty_boost; +#endif +#ifndef BOOST_NO_CWCTYPE +#include "boost_no_cwctype.ipp" +#else +namespace boost_no_cwctype = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_ADDRESSOF +#include "boost_no_cxx11_addressof.ipp" +#else +namespace boost_no_cxx11_addressof = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_ALIGNAS +#include "boost_no_cxx11_alignas.ipp" +#else +namespace boost_no_cxx11_alignas = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_ALLOCATOR +#include "boost_no_cxx11_allocator.ipp" +#else +namespace boost_no_cxx11_allocator = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_ATOMIC_SMART_PTR +#include "boost_no_cxx11_atomic_sp.ipp" +#else +namespace boost_no_cxx11_atomic_smart_ptr = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_FINAL +#include "boost_no_cxx11_final.ipp" +#else +namespace boost_no_cxx11_final = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_ARRAY +#include "boost_no_cxx11_hdr_array.ipp" +#else +namespace boost_no_cxx11_hdr_array = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_ATOMIC +#include "boost_no_cxx11_hdr_atomic.ipp" +#else +namespace boost_no_cxx11_hdr_atomic = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_CHRONO +#include "boost_no_cxx11_hdr_chrono.ipp" +#else +namespace boost_no_cxx11_hdr_chrono = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_CODECVT +#include "boost_no_cxx11_hdr_codecvt.ipp" +#else +namespace boost_no_cxx11_hdr_codecvt = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_CONDITION_VARIABLE +#include "boost_no_cxx11_hdr_condition_variable.ipp" +#else +namespace boost_no_cxx11_hdr_condition_variable = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_FORWARD_LIST +#include "boost_no_cxx11_hdr_forward_list.ipp" +#else +namespace boost_no_cxx11_hdr_forward_list = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_FUTURE +#include "boost_no_cxx11_hdr_future.ipp" +#else +namespace boost_no_cxx11_hdr_future = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST +#include "boost_no_cxx11_hdr_initializer_list.ipp" +#else +namespace boost_no_cxx11_hdr_initializer_list = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_MUTEX +#include "boost_no_cxx11_hdr_mutex.ipp" +#else +namespace boost_no_cxx11_hdr_mutex = empty_boost; #endif #ifndef BOOST_NO_CXX11_HDR_RANDOM #include "boost_no_cxx11_hdr_random.ipp" #else namespace boost_no_cxx11_hdr_random = empty_boost; #endif +#ifndef BOOST_NO_CXX11_HDR_RATIO +#include "boost_no_cxx11_hdr_ratio.ipp" +#else +namespace boost_no_cxx11_hdr_ratio = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_REGEX +#include "boost_no_cxx11_hdr_regex.ipp" +#else +namespace boost_no_cxx11_hdr_regex = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_SYSTEM_ERROR +#include "boost_no_cxx11_hdr_system_error.ipp" +#else +namespace boost_no_cxx11_hdr_system_error = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_THREAD +#include "boost_no_cxx11_hdr_thread.ipp" +#else +namespace boost_no_cxx11_hdr_thread = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_TUPLE +#include "boost_no_cxx11_hdr_tuple.ipp" +#else +namespace boost_no_cxx11_hdr_tuple = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX +#include "boost_no_cxx11_hdr_typeindex.ipp" +#else +namespace boost_no_cxx11_hdr_typeindex = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS +#include "boost_no_cxx11_hdr_type_traits.ipp" +#else +namespace boost_no_cxx11_hdr_type_traits = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP +#include "boost_no_cxx11_hdr_unordered_map.ipp" +#else +namespace boost_no_cxx11_hdr_unordered_map = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_UNORDERED_SET +#include "boost_no_cxx11_hdr_unordered_set.ipp" +#else +namespace boost_no_cxx11_hdr_unordered_set = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_INLINE_NAMESPACES +#include "boost_no_cxx11_inline_namespaces.ipp" +#else +namespace boost_no_cxx11_inline_namespaces = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS +#include "boost_no_cxx11_non_pub_def_fun.ipp" +#else +namespace boost_no_cxx11_non_public_defaulted_functions = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_NUMERIC_LIMITS +#include "boost_no_cxx11_numeric_limits.ipp" +#else +namespace boost_no_cxx11_numeric_limits = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_REF_QUALIFIERS +#include "boost_no_cxx11_ref_qualifiers.ipp" +#else +namespace boost_no_cxx11_ref_qualifiers = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_SMART_PTR +#include "boost_no_cxx11_smart_ptr.ipp" +#else +namespace boost_no_cxx11_smart_ptr = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_STD_ALIGN +#include "boost_no_cxx11_std_align.ipp" +#else +namespace boost_no_cxx11_std_align = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_TRAILING_RESULT_TYPES +#include "boost_no_cxx11_trailing_result_types.ipp" +#else +namespace boost_no_cxx11_trailing_result_types = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_USER_DEFINED_LITERALS +#include "boost_no_cxx11_user_lit.ipp" +#else +namespace boost_no_cxx11_user_defined_literals = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_BINARY_LITERALS +#include "boost_no_cxx14_binary_literals.ipp" +#else +namespace boost_no_cxx14_binary_literals = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_CONSTEXPR +#include "boost_no_cxx14_constexpr.ipp" +#else +namespace boost_no_cxx14_constexpr = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_DECLTYPE_AUTO +#include "boost_no_cxx14_decltype_auto.ipp" +#else +namespace boost_no_cxx14_decltype_auto = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_DIGIT_SEPARATOR +#include "boost_no_cxx14_digit_separator.ipp" +#else +namespace boost_no_cxx14_digit_separator = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS +#include "boost_no_cxx14_generic_lambda.ipp" +#else +namespace boost_no_cxx14_generic_lambdas = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#include "boost_no_cxx14_lambda_capture.ipp" +#else +namespace boost_no_cxx14_initialized_lambda_captures = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_AGGREGATE_NSDMI +#include "boost_no_cxx14_member_init.ipp" +#else +namespace boost_no_cxx14_aggregate_nsdmi = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#include "boost_no_cxx14_return_type_ded.ipp" +#else +namespace boost_no_cxx14_return_type_deduction = empty_boost; +#endif +#ifndef BOOST_NO_CXX14_VARIABLE_TEMPLATES +#include "boost_no_cxx14_var_templ.ipp" +#else +namespace boost_no_cxx14_variable_templates = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_HDR_FUNCTIONAL +#include "boost_no_cxx_hdr_functional.ipp" +#else +namespace boost_no_cxx11_hdr_functional = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_DECLTYPE +#include "boost_no_decltype.ipp" +#else +namespace boost_no_cxx11_decltype = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_DECLTYPE_N3276 +#include "boost_no_decltype_n3276.ipp" +#else +namespace boost_no_cxx11_decltype_n3276 = empty_boost; +#endif +#ifndef BOOST_DEDUCED_TYPENAME +#include "boost_no_ded_typename.ipp" +#else +namespace boost_deduced_typename = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_DEFAULTED_FUNCTIONS +#include "boost_no_defaulted_functions.ipp" +#else +namespace boost_no_cxx11_defaulted_functions = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_DELETED_FUNCTIONS +#include "boost_no_deleted_functions.ipp" +#else +namespace boost_no_cxx11_deleted_functions = empty_boost; +#endif +#ifndef BOOST_NO_DEPENDENT_NESTED_DERIVATIONS +#include "boost_no_dep_nested_class.ipp" +#else +namespace boost_no_dependent_nested_derivations = empty_boost; +#endif +#ifndef BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS +#include "boost_no_dep_val_param.ipp" +#else +namespace boost_no_dependent_types_in_template_value_parameters = empty_boost; +#endif +#ifndef BOOST_NO_EXCEPTIONS +#include "boost_no_exceptions.ipp" +#else +namespace boost_no_exceptions = empty_boost; +#endif +#ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE +#include "boost_no_excep_std.ipp" +#else +namespace boost_no_exception_std_namespace = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +#include "boost_no_explicit_cvt_ops.ipp" +#else +namespace boost_no_cxx11_explicit_conversion_operators = empty_boost; +#endif +#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS +#include "boost_no_exp_func_tem_arg.ipp" +#else +namespace boost_no_explicit_function_template_arguments = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE +#include "boost_no_extern_template.ipp" +#else +namespace boost_no_cxx11_extern_template = empty_boost; +#endif +#ifndef BOOST_NO_FENV_H +#include "boost_no_fenv_h.ipp" +#else +namespace boost_no_fenv_h = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS +#include "boost_no_fixed_len_variadic_templates.ipp" +#else +namespace boost_no_cxx11_fixed_length_variadic_template_expansion_packs = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS +#include "boost_no_function_template_default_args.ipp" +#else +namespace boost_no_cxx11_function_template_default_args = empty_boost; +#endif +#ifndef BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS +#include "boost_no_function_type_spec.ipp" +#else +namespace boost_no_function_type_specializations = empty_boost; +#endif #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #include "boost_no_func_tmp_order.ipp" #else namespace boost_no_function_template_ordering = empty_boost; #endif +#ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS +#include "boost_no_i64_limits.ipp" +#else +namespace boost_no_ms_int64_numeric_limits = empty_boost; +#endif +#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION +#include "boost_no_inline_memb_init.ipp" +#else +namespace boost_no_inclass_member_initialization = empty_boost; +#endif +#ifndef BOOST_NO_INTEGRAL_INT64_T +#include "boost_no_integral_int64_t.ipp" +#else +namespace boost_no_integral_int64_t = empty_boost; +#endif +#ifndef BOOST_NO_IOSFWD +#include "boost_no_iosfwd.ipp" +#else +namespace boost_no_iosfwd = empty_boost; +#endif +#ifndef BOOST_NO_IOSTREAM +#include "boost_no_iostream.ipp" +#else +namespace boost_no_iostream = empty_boost; +#endif +#ifndef BOOST_NO_IS_ABSTRACT +#include "boost_no_is_abstract.ipp" +#else +namespace boost_no_is_abstract = empty_boost; +#endif +#ifndef BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS +#include "boost_no_iter_construct.ipp" +#else +namespace boost_no_templated_iterator_constructors = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_LAMBDAS +#include "boost_no_lambdas.ipp" +#else +namespace boost_no_cxx11_lambdas = empty_boost; +#endif +#ifndef BOOST_NO_LIMITS +#include "boost_no_limits.ipp" +#else +namespace boost_no_limits = empty_boost; +#endif +#ifndef BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS +#include "boost_no_limits_const_exp.ipp" +#else +namespace boost_no_limits_compile_time_constants = empty_boost; +#endif +#ifndef BOOST_NO_LONG_LONG_NUMERIC_LIMITS +#include "boost_no_ll_limits.ipp" +#else +namespace boost_no_long_long_numeric_limits = empty_boost; +#endif +#ifndef BOOST_NO_LONG_LONG +#include "boost_no_long_long.ipp" +#else +namespace boost_no_long_long = empty_boost; +#endif +#ifndef BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS +#include "boost_no_mem_func_spec.ipp" +#else +namespace boost_no_member_function_specializations = empty_boost; +#endif +#ifndef BOOST_NO_MEMBER_TEMPLATES +#include "boost_no_mem_templates.ipp" +#else +namespace boost_no_member_templates = empty_boost; +#endif +#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS +#include "boost_no_mem_templ_frnds.ipp" +#else +namespace boost_no_member_template_friends = empty_boost; +#endif +#ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD +#include "boost_no_mem_tem_keyword.ipp" +#else +namespace boost_no_member_template_keyword = empty_boost; +#endif +#ifndef BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS +#include "boost_no_mem_tem_pnts.ipp" +#else +namespace boost_no_pointer_to_member_template_parameters = empty_boost; +#endif +#ifndef BOOST_NO_NESTED_FRIENDSHIP +#include "boost_no_nested_friendship.ipp" +#else +namespace boost_no_nested_friendship = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_NOEXCEPT +#include "boost_no_noexcept.ipp" +#else +namespace boost_no_cxx11_noexcept = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_NULLPTR +#include "boost_no_nullptr.ipp" +#else +namespace boost_no_cxx11_nullptr = empty_boost; +#endif +#ifndef BOOST_NO_OPERATORS_IN_NAMESPACE +#include "boost_no_ops_in_namespace.ipp" +#else +namespace boost_no_operators_in_namespace = empty_boost; +#endif +#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION +#include "boost_no_partial_spec.ipp" +#else +namespace boost_no_template_partial_specialization = empty_boost; +#endif +#ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS +#include "boost_no_part_spec_def_args.ipp" +#else +namespace boost_no_partial_specialization_implicit_default_args = empty_boost; +#endif +#ifndef BOOST_NO_PRIVATE_IN_AGGREGATE +#include "boost_no_priv_aggregate.ipp" +#else +namespace boost_no_private_in_aggregate = empty_boost; +#endif +#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST +#include "boost_no_ptr_mem_const.ipp" +#else +namespace boost_no_pointer_to_member_const = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_RANGE_BASED_FOR +#include "boost_no_range_based_for.ipp" +#else +namespace boost_no_cxx11_range_based_for = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_RAW_LITERALS +#include "boost_no_raw_literals.ipp" +#else +namespace boost_no_cxx11_raw_literals = empty_boost; +#endif +#ifndef BOOST_NO_UNREACHABLE_RETURN_DETECTION +#include "boost_no_ret_det.ipp" +#else +namespace boost_no_unreachable_return_detection = empty_boost; +#endif +#ifndef BOOST_NO_RTTI +#include "boost_no_rtti.ipp" +#else +namespace boost_no_rtti = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES +#include "boost_no_rvalue_references.ipp" +#else +namespace boost_no_cxx11_rvalue_references = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_SCOPED_ENUMS +#include "boost_no_scoped_enums.ipp" +#else +namespace boost_no_cxx11_scoped_enums = empty_boost; +#endif +#ifndef BOOST_NO_SFINAE +#include "boost_no_sfinae.ipp" +#else +namespace boost_no_sfinae = empty_boost; +#endif +#ifndef BOOST_NO_SFINAE_EXPR +#include "boost_no_sfinae_expr.ipp" +#else +namespace boost_no_sfinae_expr = empty_boost; +#endif +#ifndef BOOST_NO_STRINGSTREAM +#include "boost_no_sstream.ipp" +#else +namespace boost_no_stringstream = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_STATIC_ASSERT +#include "boost_no_static_assert.ipp" +#else +namespace boost_no_cxx11_static_assert = empty_boost; +#endif +#ifndef BOOST_NO_STDC_NAMESPACE +#include "boost_no_stdc_namespace.ipp" +#else +namespace boost_no_stdc_namespace = empty_boost; +#endif +#ifndef BOOST_NO_STD_ALLOCATOR +#include "boost_no_std_allocator.ipp" +#else +namespace boost_no_std_allocator = empty_boost; +#endif +#ifndef BOOST_NO_STD_DISTANCE +#include "boost_no_std_distance.ipp" +#else +namespace boost_no_std_distance = empty_boost; +#endif +#ifndef BOOST_NO_STD_ITERATOR +#include "boost_no_std_iterator.ipp" +#else +namespace boost_no_std_iterator = empty_boost; +#endif +#ifndef BOOST_NO_STD_ITERATOR_TRAITS +#include "boost_no_std_iter_traits.ipp" +#else +namespace boost_no_std_iterator_traits = empty_boost; +#endif +#ifndef BOOST_NO_STD_LOCALE +#include "boost_no_std_locale.ipp" +#else +namespace boost_no_std_locale = empty_boost; +#endif +#ifndef BOOST_NO_STD_MESSAGES +#include "boost_no_std_messages.ipp" +#else +namespace boost_no_std_messages = empty_boost; +#endif +#ifndef BOOST_NO_STD_MIN_MAX +#include "boost_no_std_min_max.ipp" +#else +namespace boost_no_std_min_max = empty_boost; +#endif +#ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN +#include "boost_no_std_oi_assign.ipp" +#else +namespace boost_no_std_output_iterator_assign = empty_boost; +#endif +#ifndef BOOST_NO_STD_TYPEINFO +#include "boost_no_std_typeinfo.ipp" +#else +namespace boost_no_std_typeinfo = empty_boost; +#endif +#ifndef BOOST_NO_STD_USE_FACET +#include "boost_no_std_use_facet.ipp" +#else +namespace boost_no_std_use_facet = empty_boost; +#endif +#ifndef BOOST_NO_STD_WSTREAMBUF +#include "boost_no_std_wstreambuf.ipp" +#else +namespace boost_no_std_wstreambuf = empty_boost; +#endif +#ifndef BOOST_NO_STD_WSTRING +#include "boost_no_std_wstring.ipp" +#else +namespace boost_no_std_wstring = empty_boost; +#endif +#ifndef BOOST_NO_SWPRINTF +#include "boost_no_swprintf.ipp" +#else +namespace boost_no_swprintf = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES +#include "boost_no_template_aliases.ipp" +#else +namespace boost_no_cxx11_template_aliases = empty_boost; +#endif +#ifndef BOOST_NO_TEMPLATED_IOSTREAMS +#include "boost_no_template_streams.ipp" +#else +namespace boost_no_templated_iostreams = empty_boost; +#endif +#ifndef BOOST_NO_TEMPLATE_TEMPLATES +#include "boost_no_template_template.ipp" +#else +namespace boost_no_template_templates = empty_boost; +#endif +#ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +#include "boost_no_tem_local_classes.ipp" +#else +namespace boost_no_cxx11_local_class_template_parameters = empty_boost; +#endif +#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP +#include "boost_no_two_phase_lookup.ipp" +#else +namespace boost_no_two_phase_name_lookup = empty_boost; +#endif #ifndef BOOST_NO_TYPEID #include "boost_no_typeid.ipp" #else @@ -562,172 +677,272 @@ namespace boost_no_typeid = empty_boost; #else namespace boost_no_typename_with_ctor = empty_boost; #endif -#ifndef BOOST_NO_CXX11_HDR_ARRAY -#include "boost_no_cxx11_hdr_array.ipp" +#ifndef BOOST_NO_CXX11_UNICODE_LITERALS +#include "boost_no_unicode_literals.ipp" #else -namespace boost_no_cxx11_hdr_array = empty_boost; +namespace boost_no_cxx11_unicode_literals = empty_boost; #endif -#ifndef BOOST_NO_CXX11_ALIGNAS -#include "boost_no_cxx11_alignas.ipp" +#ifndef BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX +#include "boost_no_unified_init.ipp" #else -namespace boost_no_cxx11_alignas = empty_boost; -#endif -#ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE -#include "boost_no_using_decl_overld.ipp" -#else -namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost; -#endif -#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION -#include "boost_no_inline_memb_init.ipp" -#else -namespace boost_no_inclass_member_initialization = empty_boost; -#endif -#ifndef BOOST_NO_STD_TYPEINFO -#include "boost_no_std_typeinfo.ipp" -#else -namespace boost_no_std_typeinfo = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_VARIADIC_MACROS -#include "boost_no_variadic_macros.ipp" -#else -namespace boost_no_cxx11_variadic_macros = empty_boost; +namespace boost_no_cxx11_unified_initialization_syntax = empty_boost; #endif #ifndef BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL #include "boost_no_using_breaks_adl.ipp" #else namespace boost_function_scope_using_declaration_breaks_adl = empty_boost; #endif -#ifndef BOOST_NO_STD_WSTRING -#include "boost_no_std_wstring.ipp" +#ifndef BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE +#include "boost_no_using_decl_overld.ipp" #else -namespace boost_no_std_wstring = empty_boost; +namespace boost_no_using_declaration_overloads_from_typename_base = empty_boost; #endif -#ifndef BOOST_NO_CTYPE_FUNCTIONS -#include "boost_no_ctype_functions.ipp" +#ifndef BOOST_NO_USING_TEMPLATE +#include "boost_no_using_template.ipp" #else -namespace boost_no_ctype_functions = empty_boost; +namespace boost_no_using_template = empty_boost; #endif -#ifndef BOOST_NO_CXX11_NULLPTR -#include "boost_no_nullptr.ipp" +#ifndef BOOST_NO_CXX11_VARIADIC_MACROS +#include "boost_no_variadic_macros.ipp" #else -namespace boost_no_cxx11_nullptr = empty_boost; +namespace boost_no_cxx11_variadic_macros = empty_boost; #endif -#ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD -#include "boost_no_mem_tem_keyword.ipp" +#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES +#include "boost_no_variadic_templates.ipp" #else -namespace boost_no_member_template_keyword = empty_boost; +namespace boost_no_cxx11_variadic_templates = empty_boost; #endif -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES -#include "boost_no_rvalue_references.ipp" +#ifndef BOOST_NO_VOID_RETURNS +#include "boost_no_void_returns.ipp" #else -namespace boost_no_cxx11_rvalue_references = empty_boost; +namespace boost_no_void_returns = empty_boost; #endif -#ifndef BOOST_NO_PRIVATE_IN_AGGREGATE -#include "boost_no_priv_aggregate.ipp" +#ifndef BOOST_NO_INTRINSIC_WCHAR_T +#include "boost_no_wchar_t.ipp" #else -namespace boost_no_private_in_aggregate = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_ALLOCATOR -#include "boost_no_cxx11_allocator.ipp" -#else -namespace boost_no_cxx11_allocator = empty_boost; -#endif -#ifndef BOOST_NO_SWPRINTF -#include "boost_no_swprintf.ipp" -#else -namespace boost_no_swprintf = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_FINAL -#include "boost_no_cxx11_final.ipp" -#else -namespace boost_no_cxx11_final = empty_boost; -#endif -#ifndef BOOST_NO_STDC_NAMESPACE -#include "boost_no_stdc_namespace.ipp" -#else -namespace boost_no_stdc_namespace = empty_boost; -#endif -#ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP -#include "boost_no_two_phase_lookup.ipp" -#else -namespace boost_no_two_phase_name_lookup = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_HDR_FORWARD_LIST -#include "boost_no_cxx11_hdr_forward_list.ipp" -#else -namespace boost_no_cxx11_hdr_forward_list = empty_boost; -#endif -#ifndef BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN -#include "boost_no_std_oi_assign.ipp" -#else -namespace boost_no_std_output_iterator_assign = empty_boost; -#endif -#ifndef BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS -#include "boost_no_cxx11_non_pub_def_fun.ipp" -#else -namespace boost_no_cxx11_non_public_defaulted_functions = empty_boost; -#endif -#ifndef BOOST_NO_NESTED_FRIENDSHIP -#include "boost_no_nested_friendship.ipp" -#else -namespace boost_no_nested_friendship = empty_boost; -#endif -#ifndef BOOST_NO_POINTER_TO_MEMBER_CONST -#include "boost_no_ptr_mem_const.ipp" -#else -namespace boost_no_pointer_to_member_const = empty_boost; +namespace boost_no_intrinsic_wchar_t = empty_boost; #endif -#ifdef BOOST_HAS_INT128 -#include "boost_has_int128.ipp" +#ifdef BOOST_HAS_TWO_ARG_USE_FACET +#include "boost_has_2arg_use_facet.ipp" #else -namespace boost_has_int128 = empty_boost; +namespace boost_has_two_arg_use_facet = empty_boost; #endif -#ifdef BOOST_HAS_UNISTD_H -#include "boost_has_unistd_h.ipp" +#ifdef BOOST_HAS_BETHREADS +#include "boost_has_bethreads.ipp" #else -namespace boost_has_unistd_h = empty_boost; +namespace boost_has_bethreads = empty_boost; #endif -#ifdef BOOST_HAS_TR1_RANDOM -#include "boost_has_tr1_random.ipp" +#ifdef BOOST_HAS_CLOCK_GETTIME +#include "boost_has_clock_gettime.ipp" #else -namespace boost_has_tr1_random = empty_boost; +namespace boost_has_clock_gettime = empty_boost; #endif -#ifdef BOOST_HAS_TR1_RESULT_OF -#include "boost_has_tr1_result_of.ipp" +#ifdef BOOST_HAS_DIRENT_H +#include "boost_has_dirent_h.ipp" #else -namespace boost_has_tr1_result_of = empty_boost; +namespace boost_has_dirent_h = empty_boost; #endif -#ifdef BOOST_HAS_PTHREAD_DELAY_NP -#include "boost_has_pthread_delay_np.ipp" +#ifdef BOOST_HAS_EXPM1 +#include "boost_has_expm1.ipp" #else -namespace boost_has_pthread_delay_np = empty_boost; +namespace boost_has_expm1 = empty_boost; #endif -#ifdef BOOST_HAS_NANOSLEEP -#include "boost_has_nanosleep.ipp" +#ifdef BOOST_HAS_FTIME +#include "boost_has_ftime.ipp" #else -namespace boost_has_nanosleep = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_REGEX -#include "boost_has_tr1_regex.ipp" -#else -namespace boost_has_tr1_regex = empty_boost; +namespace boost_has_ftime = empty_boost; #endif #ifdef BOOST_HAS_GETSYSTEMTIMEASFILETIME #include "boost_has_getsystemtimeasfiletime.ipp" #else namespace boost_has_getsystemtimeasfiletime = empty_boost; #endif +#ifdef BOOST_HAS_GETTIMEOFDAY +#include "boost_has_gettimeofday.ipp" +#else +namespace boost_has_gettimeofday = empty_boost; +#endif #ifdef BOOST_HAS_HASH #include "boost_has_hash.ipp" #else namespace boost_has_hash = empty_boost; #endif +#ifdef BOOST_HAS_INT128 +#include "boost_has_int128.ipp" +#else +namespace boost_has_int128 = empty_boost; +#endif +#ifdef BOOST_HAS_LOG1P +#include "boost_has_log1p.ipp" +#else +namespace boost_has_log1p = empty_boost; +#endif +#ifdef BOOST_HAS_LONG_LONG +#include "boost_has_long_long.ipp" +#else +namespace boost_has_long_long = empty_boost; +#endif #ifdef BOOST_HAS_MACRO_USE_FACET #include "boost_has_macro_use_facet.ipp" #else namespace boost_has_macro_use_facet = empty_boost; #endif +#ifdef BOOST_HAS_MS_INT64 +#include "boost_has_ms_int64.ipp" +#else +namespace boost_has_ms_int64 = empty_boost; +#endif +#ifdef BOOST_HAS_NANOSLEEP +#include "boost_has_nanosleep.ipp" +#else +namespace boost_has_nanosleep = empty_boost; +#endif +#ifdef BOOST_HAS_NL_TYPES_H +#include "boost_has_nl_types_h.ipp" +#else +namespace boost_has_nl_types_h = empty_boost; +#endif +#ifdef BOOST_HAS_NRVO +#include "boost_has_nrvo.ipp" +#else +namespace boost_has_nrvo = empty_boost; +#endif +#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR +#include "boost_has_part_alloc.ipp" +#else +namespace boost_has_partial_std_allocator = empty_boost; +#endif +#ifdef BOOST_HAS_PTHREADS +#include "boost_has_pthreads.ipp" +#else +namespace boost_has_pthreads = empty_boost; +#endif +#ifdef BOOST_HAS_PTHREAD_DELAY_NP +#include "boost_has_pthread_delay_np.ipp" +#else +namespace boost_has_pthread_delay_np = empty_boost; +#endif +#ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE +#include "boost_has_pthread_ma_st.ipp" +#else +namespace boost_has_pthread_mutexattr_settype = empty_boost; +#endif +#ifdef BOOST_HAS_PTHREAD_YIELD +#include "boost_has_pthread_yield.ipp" +#else +namespace boost_has_pthread_yield = empty_boost; +#endif +#ifdef BOOST_HAS_RVALUE_REFS +#include "boost_has_rvalue_refs.ipp" +#else +namespace boost_has_rvalue_refs = empty_boost; +#endif +#ifdef BOOST_HAS_SCHED_YIELD +#include "boost_has_sched_yield.ipp" +#else +namespace boost_has_sched_yield = empty_boost; +#endif +#ifdef BOOST_HAS_SGI_TYPE_TRAITS +#include "boost_has_sgi_type_traits.ipp" +#else +namespace boost_has_sgi_type_traits = empty_boost; +#endif +#ifdef BOOST_HAS_SIGACTION +#include "boost_has_sigaction.ipp" +#else +namespace boost_has_sigaction = empty_boost; +#endif +#ifdef BOOST_HAS_SLIST +#include "boost_has_slist.ipp" +#else +namespace boost_has_slist = empty_boost; +#endif +#ifdef BOOST_HAS_STATIC_ASSERT +#include "boost_has_static_assert.ipp" +#else +namespace boost_has_static_assert = empty_boost; +#endif +#ifdef BOOST_HAS_STDINT_H +#include "boost_has_stdint_h.ipp" +#else +namespace boost_has_stdint_h = empty_boost; +#endif +#ifdef BOOST_HAS_STLP_USE_FACET +#include "boost_has_stlp_use_facet.ipp" +#else +namespace boost_has_stlp_use_facet = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_ARRAY +#include "boost_has_tr1_array.ipp" +#else +namespace boost_has_tr1_array = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_BIND +#include "boost_has_tr1_bind.ipp" +#else +namespace boost_has_tr1_bind = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_COMPLEX_OVERLOADS +#include "boost_has_tr1_complex_over.ipp" +#else +namespace boost_has_tr1_complex_overloads = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG +#include "boost_has_tr1_complex_trig.ipp" +#else +namespace boost_has_tr1_complex_inverse_trig = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_FUNCTION +#include "boost_has_tr1_function.ipp" +#else +namespace boost_has_tr1_function = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_HASH +#include "boost_has_tr1_hash.ipp" +#else +namespace boost_has_tr1_hash = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_MEM_FN +#include "boost_has_tr1_mem_fn.ipp" +#else +namespace boost_has_tr1_mem_fn = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_RANDOM +#include "boost_has_tr1_random.ipp" +#else +namespace boost_has_tr1_random = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_REFERENCE_WRAPPER +#include "boost_has_tr1_ref_wrap.ipp" +#else +namespace boost_has_tr1_reference_wrapper = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_REGEX +#include "boost_has_tr1_regex.ipp" +#else +namespace boost_has_tr1_regex = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_RESULT_OF +#include "boost_has_tr1_result_of.ipp" +#else +namespace boost_has_tr1_result_of = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_SHARED_PTR +#include "boost_has_tr1_shared_ptr.ipp" +#else +namespace boost_has_tr1_shared_ptr = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_TUPLE +#include "boost_has_tr1_tuple.ipp" +#else +namespace boost_has_tr1_tuple = empty_boost; +#endif +#ifdef BOOST_HAS_TR1_TYPE_TRAITS +#include "boost_has_tr1_type_traits.ipp" +#else +namespace boost_has_tr1_type_traits = empty_boost; +#endif #ifdef BOOST_HAS_TR1_UNORDERED_MAP #include "boost_has_tr1_unordered_map.ipp" #else @@ -738,342 +953,67 @@ namespace boost_has_tr1_unordered_map = empty_boost; #else namespace boost_has_tr1_unordered_set = empty_boost; #endif -#ifdef BOOST_HAS_SGI_TYPE_TRAITS -#include "boost_has_sgi_type_traits.ipp" +#ifdef BOOST_HAS_TR1_UTILITY +#include "boost_has_tr1_utility.ipp" #else -namespace boost_has_sgi_type_traits = empty_boost; +namespace boost_has_tr1_utility = empty_boost; #endif -#ifdef BOOST_HAS_LONG_LONG -#include "boost_has_long_long.ipp" +#ifdef BOOST_HAS_UNISTD_H +#include "boost_has_unistd_h.ipp" #else -namespace boost_has_long_long = empty_boost; -#endif -#ifdef BOOST_HAS_WINTHREADS -#include "boost_has_winthreads.ipp" -#else -namespace boost_has_winthreads = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_COMPLEX_OVERLOADS -#include "boost_has_tr1_complex_over.ipp" -#else -namespace boost_has_tr1_complex_overloads = empty_boost; -#endif -#ifdef BOOST_HAS_NL_TYPES_H -#include "boost_has_nl_types_h.ipp" -#else -namespace boost_has_nl_types_h = empty_boost; -#endif -#ifdef BOOST_HAS_TWO_ARG_USE_FACET -#include "boost_has_2arg_use_facet.ipp" -#else -namespace boost_has_two_arg_use_facet = empty_boost; -#endif -#ifdef BOOST_MSVC6_MEMBER_TEMPLATES -#include "boost_has_vc6_mem_templ.ipp" -#else -namespace boost_msvc6_member_templates = empty_boost; -#endif -#ifdef BOOST_HAS_LOG1P -#include "boost_has_log1p.ipp" -#else -namespace boost_has_log1p = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_ARRAY -#include "boost_has_tr1_array.ipp" -#else -namespace boost_has_tr1_array = empty_boost; -#endif -#ifdef BOOST_HAS_NRVO -#include "boost_has_nrvo.ipp" -#else -namespace boost_has_nrvo = empty_boost; -#endif -#ifdef BOOST_HAS_SIGACTION -#include "boost_has_sigaction.ipp" -#else -namespace boost_has_sigaction = empty_boost; -#endif -#ifdef BOOST_HAS_RVALUE_REFS -#include "boost_has_rvalue_refs.ipp" -#else -namespace boost_has_rvalue_refs = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG -#include "boost_has_tr1_complex_trig.ipp" -#else -namespace boost_has_tr1_complex_inverse_trig = empty_boost; -#endif -#ifdef BOOST_HAS_SLIST -#include "boost_has_slist.ipp" -#else -namespace boost_has_slist = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_TYPE_TRAITS -#include "boost_has_tr1_type_traits.ipp" -#else -namespace boost_has_tr1_type_traits = empty_boost; -#endif -#ifdef BOOST_HAS_GETTIMEOFDAY -#include "boost_has_gettimeofday.ipp" -#else -namespace boost_has_gettimeofday = empty_boost; -#endif -#ifdef BOOST_HAS_PTHREADS -#include "boost_has_pthreads.ipp" -#else -namespace boost_has_pthreads = empty_boost; -#endif -#ifdef BOOST_HAS_CLOCK_GETTIME -#include "boost_has_clock_gettime.ipp" -#else -namespace boost_has_clock_gettime = empty_boost; -#endif -#ifdef BOOST_HAS_BETHREADS -#include "boost_has_bethreads.ipp" -#else -namespace boost_has_bethreads = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_SHARED_PTR -#include "boost_has_tr1_shared_ptr.ipp" -#else -namespace boost_has_tr1_shared_ptr = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_BIND -#include "boost_has_tr1_bind.ipp" -#else -namespace boost_has_tr1_bind = empty_boost; -#endif -#ifdef BOOST_MSVC_STD_ITERATOR -#include "boost_has_vc_iterator.ipp" -#else -namespace boost_msvc_std_iterator = empty_boost; -#endif -#ifdef BOOST_HAS_STLP_USE_FACET -#include "boost_has_stlp_use_facet.ipp" -#else -namespace boost_has_stlp_use_facet = empty_boost; +namespace boost_has_unistd_h = empty_boost; #endif #ifdef BOOST_HAS_VARIADIC_TMPL #include "boost_has_variadic_tmpl.ipp" #else namespace boost_has_variadic_tmpl = empty_boost; #endif -#ifdef BOOST_HAS_TR1_TUPLE -#include "boost_has_tr1_tuple.ipp" +#ifdef BOOST_MSVC6_MEMBER_TEMPLATES +#include "boost_has_vc6_mem_templ.ipp" #else -namespace boost_has_tr1_tuple = empty_boost; +namespace boost_msvc6_member_templates = empty_boost; #endif -#ifdef BOOST_HAS_STDINT_H -#include "boost_has_stdint_h.ipp" +#ifdef BOOST_MSVC_STD_ITERATOR +#include "boost_has_vc_iterator.ipp" #else -namespace boost_has_stdint_h = empty_boost; +namespace boost_msvc_std_iterator = empty_boost; #endif -#ifdef BOOST_HAS_TR1_FUNCTION -#include "boost_has_tr1_function.ipp" +#ifdef BOOST_HAS_WINTHREADS +#include "boost_has_winthreads.ipp" #else -namespace boost_has_tr1_function = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_REFERENCE_WRAPPER -#include "boost_has_tr1_ref_wrap.ipp" -#else -namespace boost_has_tr1_reference_wrapper = empty_boost; -#endif -#ifdef BOOST_HAS_STATIC_ASSERT -#include "boost_has_static_assert.ipp" -#else -namespace boost_has_static_assert = empty_boost; -#endif -#ifdef BOOST_HAS_SCHED_YIELD -#include "boost_has_sched_yield.ipp" -#else -namespace boost_has_sched_yield = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_HASH -#include "boost_has_tr1_hash.ipp" -#else -namespace boost_has_tr1_hash = empty_boost; -#endif -#ifdef BOOST_HAS_MS_INT64 -#include "boost_has_ms_int64.ipp" -#else -namespace boost_has_ms_int64 = empty_boost; -#endif -#ifdef BOOST_HAS_EXPM1 -#include "boost_has_expm1.ipp" -#else -namespace boost_has_expm1 = empty_boost; -#endif -#ifdef BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE -#include "boost_has_pthread_ma_st.ipp" -#else -namespace boost_has_pthread_mutexattr_settype = empty_boost; -#endif -#ifdef BOOST_HAS_PARTIAL_STD_ALLOCATOR -#include "boost_has_part_alloc.ipp" -#else -namespace boost_has_partial_std_allocator = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_MEM_FN -#include "boost_has_tr1_mem_fn.ipp" -#else -namespace boost_has_tr1_mem_fn = empty_boost; -#endif -#ifdef BOOST_HAS_PTHREAD_YIELD -#include "boost_has_pthread_yield.ipp" -#else -namespace boost_has_pthread_yield = empty_boost; -#endif -#ifdef BOOST_HAS_TR1_UTILITY -#include "boost_has_tr1_utility.ipp" -#else -namespace boost_has_tr1_utility = empty_boost; -#endif -#ifdef BOOST_HAS_DIRENT_H -#include "boost_has_dirent_h.ipp" -#else -namespace boost_has_dirent_h = empty_boost; -#endif -#ifdef BOOST_HAS_FTIME -#include "boost_has_ftime.ipp" -#else -namespace boost_has_ftime = empty_boost; +namespace boost_has_winthreads = empty_boost; #endif int main( int, char *[] ) { - if(0 != boost_no_cxx11_decltype::test()) + if(0 != boost_has_two_arg_use_facet::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_TWO_ARG_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_sfinae::test()) + if(0 != boost_has_bethreads::test()) { - std::cerr << "Failed test for BOOST_NO_SFINAE at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_BETHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_hdr_type_traits::test()) + if(0 != boost_has_clock_gettime::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_CLOCK_GETTIME at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_array_type_specializations::test()) + if(0 != boost_has_dirent_h::test()) { - std::cerr << "Failed test for BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_DIRENT_H at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_iterator_traits::test()) + if(0 != boost_has_expm1::test()) { - std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_EXPM1 at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_int128::test()) + if(0 != boost_has_ftime::test()) { - std::cerr << "Failed test for BOOST_HAS_INT128 at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_unistd_h::test()) - { - std::cerr << "Failed test for BOOST_HAS_UNISTD_H at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_random::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_unordered_map::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_result_of::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_RESULT_OF at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_pthread_delay_np::test()) - { - std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_pointer_to_member_template_parameters::test()) - { - std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_is_abstract::test()) - { - std::cerr << "Failed test for BOOST_NO_IS_ABSTRACT at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_templated_iostreams::test()) - { - std::cerr << "Failed test for BOOST_NO_TEMPLATED_IOSTREAMS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_inline_namespaces::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_INLINE_NAMESPACES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_fenv_h::test()) - { - std::cerr << "Failed test for BOOST_NO_FENV_H at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_nanosleep::test()) - { - std::cerr << "Failed test for BOOST_HAS_NANOSLEEP at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_typeindex::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_exception_std_namespace::test()) - { - std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_integral_int64_t::test()) - { - std::cerr << "Failed test for BOOST_NO_INTEGRAL_INT64_T at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_limits_compile_time_constants::test()) - { - std::cerr << "Failed test for BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_regex::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_unified_initialization_syntax::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_min_max::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_MIN_MAX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_user_defined_literals::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_USER_DEFINED_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_ratio::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RATIO at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_complete_value_initialization::test()) - { - std::cerr << "Failed test for BOOST_NO_COMPLETE_VALUE_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_FTIME at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_has_getsystemtimeasfiletime::test()) @@ -1081,14 +1021,9 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_GETSYSTEMTIMEASFILETIME at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_addressof::test()) + if(0 != boost_has_gettimeofday::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_ADDRESSOF at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_functional::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUNCTIONAL at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_GETTIMEOFDAY at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_has_hash::test()) @@ -1096,39 +1031,179 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_has_int128::test()) + { + std::cerr << "Failed test for BOOST_HAS_INT128 at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_log1p::test()) + { + std::cerr << "Failed test for BOOST_HAS_LOG1P at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_long_long::test()) + { + std::cerr << "Failed test for BOOST_HAS_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_has_macro_use_facet::test()) { std::cerr << "Failed test for BOOST_HAS_MACRO_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_decltype_n3276::test()) + if(0 != boost_has_ms_int64::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE_N3276 at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_MS_INT64 at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_local_class_template_parameters::test()) + if(0 != boost_has_nanosleep::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_NANOSLEEP at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_member_function_specializations::test()) + if(0 != boost_has_nl_types_h::test()) { - std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_NL_TYPES_H at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_partial_specialization_implicit_default_args::test()) + if(0 != boost_has_nrvo::test()) { - std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_NRVO at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_wstreambuf::test()) + if(0 != boost_has_partial_std_allocator::test()) { - std::cerr << "Failed test for BOOST_NO_STD_WSTREAMBUF at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_long_long::test()) + if(0 != boost_has_pthreads::test()) { - std::cerr << "Failed test for BOOST_NO_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_pthread_delay_np::test()) + { + std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_pthread_mutexattr_settype::test()) + { + std::cerr << "Failed test for BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_pthread_yield::test()) + { + std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_rvalue_refs::test()) + { + std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_sched_yield::test()) + { + std::cerr << "Failed test for BOOST_HAS_SCHED_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_sgi_type_traits::test()) + { + std::cerr << "Failed test for BOOST_HAS_SGI_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_sigaction::test()) + { + std::cerr << "Failed test for BOOST_HAS_SIGACTION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_slist::test()) + { + std::cerr << "Failed test for BOOST_HAS_SLIST at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_static_assert::test()) + { + std::cerr << "Failed test for BOOST_HAS_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_stdint_h::test()) + { + std::cerr << "Failed test for BOOST_HAS_STDINT_H at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_stlp_use_facet::test()) + { + std::cerr << "Failed test for BOOST_HAS_STLP_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_array::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_bind::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_BIND at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_complex_overloads::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_OVERLOADS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_complex_inverse_trig::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_function::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_FUNCTION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_hash::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_mem_fn::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_MEM_FN at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_random::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_reference_wrapper::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_REFERENCE_WRAPPER at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_regex::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_result_of::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_RESULT_OF at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_shared_ptr::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_SHARED_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_tuple::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_has_tr1_type_traits::test()) + { + std::cerr << "Failed test for BOOST_HAS_TR1_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_has_tr1_unordered_map::test()) @@ -1141,344 +1216,14 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_TR1_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_extern_template::test()) + if(0 != boost_has_tr1_utility::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_TR1_UTILITY at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_constexpr::test()) + if(0 != boost_has_unistd_h::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_intrinsic_wchar_t::test()) - { - std::cerr << "Failed test for BOOST_NO_INTRINSIC_WCHAR_T at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_sgi_type_traits::test()) - { - std::cerr << "Failed test for BOOST_HAS_SGI_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_operators_in_namespace::test()) - { - std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_deleted_functions::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_DELETED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_iosfwd::test()) - { - std::cerr << "Failed test for BOOST_NO_IOSFWD at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_long_long::test()) - { - std::cerr << "Failed test for BOOST_HAS_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_numeric_limits::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_unreachable_return_detection::test()) - { - std::cerr << "Failed test for BOOST_NO_UNREACHABLE_RETURN_DETECTION at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_variadic_templates::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_winthreads::test()) - { - std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_noexcept::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cv_void_specializations::test()) - { - std::cerr << "Failed test for BOOST_NO_CV_VOID_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_initializer_list::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_INITIALIZER_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_complex_overloads::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_OVERLOADS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_nl_types_h::test()) - { - std::cerr << "Failed test for BOOST_HAS_NL_TYPES_H at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_function_template_default_args::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_two_arg_use_facet::test()) - { - std::cerr << "Failed test for BOOST_HAS_TWO_ARG_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_msvc6_member_templates::test()) - { - std::cerr << "Failed test for BOOST_MSVC6_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_lambdas::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_log1p::test()) - { - std::cerr << "Failed test for BOOST_HAS_LOG1P at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_array::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_nrvo::test()) - { - std::cerr << "Failed test for BOOST_HAS_NRVO at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_defaulted_functions::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_char32_t::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_CHAR32_T at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_exceptions::test()) - { - std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_future::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUTURE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_sigaction::test()) - { - std::cerr << "Failed test for BOOST_HAS_SIGACTION at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_rvalue_refs::test()) - { - std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cv_specializations::test()) - { - std::cerr << "Failed test for BOOST_NO_CV_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_complex_inverse_trig::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_COMPLEX_INVERSE_TRIG at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_locale::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_dependent_types_in_template_value_parameters::test()) - { - std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_using_template::test()) - { - std::cerr << "Failed test for BOOST_NO_USING_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_limits::test()) - { - std::cerr << "Failed test for BOOST_NO_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_thread::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_THREAD at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_rtti::test()) - { - std::cerr << "Failed test for BOOST_NO_RTTI at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_fixed_length_variadic_template_expansion_packs::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_long_long_numeric_limits::test()) - { - std::cerr << "Failed test for BOOST_NO_LONG_LONG_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cwctype::test()) - { - std::cerr << "Failed test for BOOST_NO_CWCTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_slist::test()) - { - std::cerr << "Failed test for BOOST_HAS_SLIST at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_type_traits::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_gettimeofday::test()) - { - std::cerr << "Failed test for BOOST_HAS_GETTIMEOFDAY at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_pthreads::test()) - { - std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_deduced_typename::test()) - { - std::cerr << "Failed test for BOOST_DEDUCED_TYPENAME at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_clock_gettime::test()) - { - std::cerr << "Failed test for BOOST_HAS_CLOCK_GETTIME at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_condition_variable::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CONDITION_VARIABLE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_stringstream::test()) - { - std::cerr << "Failed test for BOOST_NO_STRINGSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_system_error::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_SYSTEM_ERROR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_bethreads::test()) - { - std::cerr << "Failed test for BOOST_HAS_BETHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_trailing_result_types::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_TRAILING_RESULT_TYPES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_atomic::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ATOMIC at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_shared_ptr::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_SHARED_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_std_align::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_STD_ALIGN at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cwchar::test()) - { - std::cerr << "Failed test for BOOST_NO_CWCHAR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_mutex::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_dependent_nested_derivations::test()) - { - std::cerr << "Failed test for BOOST_NO_DEPENDENT_NESTED_DERIVATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_ref_qualifiers::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_REF_QUALIFIERS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_bind::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_BIND at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_msvc_std_iterator::test()) - { - std::cerr << "Failed test for BOOST_MSVC_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_chrono::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CHRONO at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_use_facet::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_templated_iterator_constructors::test()) - { - std::cerr << "Failed test for BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_stlp_use_facet::test()) - { - std::cerr << "Failed test for BOOST_HAS_STLP_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_distance::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_template_templates::test()) - { - std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_sfinae_expr::test()) - { - std::cerr << "Failed test for BOOST_NO_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_UNISTD_H at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_has_variadic_tmpl::test()) @@ -1486,94 +1231,19 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_VARIADIC_TMPL at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_tr1_tuple::test()) + if(0 != boost_msvc6_member_templates::test()) { - std::cerr << "Failed test for BOOST_HAS_TR1_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_MSVC6_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_stdint_h::test()) + if(0 != boost_msvc_std_iterator::test()) { - std::cerr << "Failed test for BOOST_HAS_STDINT_H at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_MSVC_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_char16_t::test()) + if(0 != boost_has_winthreads::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_CHAR16_T at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_range_based_for::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_RANGE_BASED_FOR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_void_returns::test()) - { - std::cerr << "Failed test for BOOST_NO_VOID_RETURNS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_codecvt::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CODECVT at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_auto_ptr::test()) - { - std::cerr << "Failed test for BOOST_NO_AUTO_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_regex::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_messages::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_MESSAGES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_bcb_partial_specialization_bug::test()) - { - std::cerr << "Failed test for BOOST_BCB_PARTIAL_SPECIALIZATION_BUG at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_unordered_set::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_function::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_FUNCTION at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_reference_wrapper::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_REFERENCE_WRAPPER at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_static_assert::test()) - { - std::cerr << "Failed test for BOOST_HAS_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_auto_multideclarations::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_tuple::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_sched_yield::test()) - { - std::cerr << "Failed test for BOOST_HAS_SCHED_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_smart_ptr::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_HAS_WINTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_adl_barrier::test()) @@ -1581,9 +1251,14 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_ADL_BARRIER at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_explicit_conversion_operators::test()) + if(0 != boost_no_argument_dependent_lookup::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_array_type_specializations::test()) + { + std::cerr << "Failed test for BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_cxx11_auto_declarations::test()) @@ -1591,39 +1266,79 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_DECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_unicode_literals::test()) + if(0 != boost_no_cxx11_auto_multideclarations::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_tr1_hash::test()) + if(0 != boost_no_auto_ptr::test()) { - std::cerr << "Failed test for BOOST_HAS_TR1_HASH at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_AUTO_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_member_template_friends::test()) + if(0 != boost_bcb_partial_specialization_bug::test()) { - std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_BCB_PARTIAL_SPECIALIZATION_BUG at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_scoped_enums::test()) + if(0 != boost_no_cxx11_char16_t::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_SCOPED_ENUMS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_CHAR16_T at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_ms_int64::test()) + if(0 != boost_no_cxx11_char32_t::test()) { - std::cerr << "Failed test for BOOST_HAS_MS_INT64 at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_CHAR32_T at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_raw_literals::test()) + if(0 != boost_no_complete_value_initialization::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_RAW_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_COMPLETE_VALUE_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_iostream::test()) + if(0 != boost_no_cxx11_constexpr::test()) { - std::cerr << "Failed test for BOOST_NO_IOSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_ctype_functions::test()) + { + std::cerr << "Failed test for BOOST_NO_CTYPE_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cv_specializations::test()) + { + std::cerr << "Failed test for BOOST_NO_CV_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cv_void_specializations::test()) + { + std::cerr << "Failed test for BOOST_NO_CV_VOID_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cwchar::test()) + { + std::cerr << "Failed test for BOOST_NO_CWCHAR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cwctype::test()) + { + std::cerr << "Failed test for BOOST_NO_CWCTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_addressof::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_ADDRESSOF at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_alignas::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_ALIGNAS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_allocator::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_cxx11_atomic_smart_ptr::test()) @@ -1631,64 +1346,54 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_ATOMIC_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_expm1::test()) + if(0 != boost_no_cxx11_final::test()) { - std::cerr << "Failed test for BOOST_HAS_EXPM1 at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_FINAL at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_template_partial_specialization::test()) + if(0 != boost_no_cxx11_hdr_array::test()) { - std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_iterator::test()) + if(0 != boost_no_cxx11_hdr_atomic::test()) { - std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ATOMIC at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_pthread_mutexattr_settype::test()) + if(0 != boost_no_cxx11_hdr_chrono::test()) { - std::cerr << "Failed test for BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CHRONO at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_argument_dependent_lookup::test()) + if(0 != boost_no_cxx11_hdr_codecvt::test()) { - std::cerr << "Failed test for BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CODECVT at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_allocator::test()) + if(0 != boost_no_cxx11_hdr_condition_variable::test()) { - std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_CONDITION_VARIABLE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_function_type_specializations::test()) + if(0 != boost_no_cxx11_hdr_forward_list::test()) { - std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FORWARD_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_member_templates::test()) + if(0 != boost_no_cxx11_hdr_future::test()) { - std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUTURE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_static_assert::test()) + if(0 != boost_no_cxx11_hdr_initializer_list::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_INITIALIZER_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_template_aliases::test()) + if(0 != boost_no_cxx11_hdr_mutex::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_explicit_function_template_arguments::test()) - { - std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_ms_int64_numeric_limits::test()) - { - std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_MUTEX at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_cxx11_hdr_random::test()) @@ -1696,14 +1401,494 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RANDOM at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_cxx11_hdr_ratio::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_RATIO at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_regex::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_REGEX at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_system_error::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_SYSTEM_ERROR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_thread::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_THREAD at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_tuple::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_typeindex::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_type_traits::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_unordered_map::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_unordered_set::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_SET at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_inline_namespaces::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_INLINE_NAMESPACES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_non_public_defaulted_functions::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_numeric_limits::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_ref_qualifiers::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_REF_QUALIFIERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_smart_ptr::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_SMART_PTR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_std_align::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_STD_ALIGN at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_trailing_result_types::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_TRAILING_RESULT_TYPES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_user_defined_literals::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_USER_DEFINED_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_binary_literals::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_BINARY_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_constexpr::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_CONSTEXPR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_decltype_auto::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_DECLTYPE_AUTO at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_digit_separator::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_DIGIT_SEPARATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_generic_lambdas::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_GENERIC_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_initialized_lambda_captures::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_aggregate_nsdmi::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_AGGREGATE_NSDMI at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_return_type_deduction::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx14_variable_templates::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX14_VARIABLE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_hdr_functional::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FUNCTIONAL at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_decltype::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_decltype_n3276::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_DECLTYPE_N3276 at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_deduced_typename::test()) + { + std::cerr << "Failed test for BOOST_DEDUCED_TYPENAME at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_defaulted_functions::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_deleted_functions::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_DELETED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_dependent_nested_derivations::test()) + { + std::cerr << "Failed test for BOOST_NO_DEPENDENT_NESTED_DERIVATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_dependent_types_in_template_value_parameters::test()) + { + std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_exceptions::test()) + { + std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_exception_std_namespace::test()) + { + std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_explicit_conversion_operators::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_explicit_function_template_arguments::test()) + { + std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_extern_template::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_fenv_h::test()) + { + std::cerr << "Failed test for BOOST_NO_FENV_H at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_fixed_length_variadic_template_expansion_packs::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_function_template_default_args::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_function_type_specializations::test()) + { + std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_function_template_ordering::test()) { std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_partial_std_allocator::test()) + if(0 != boost_no_ms_int64_numeric_limits::test()) { - std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_inclass_member_initialization::test()) + { + std::cerr << "Failed test for BOOST_NO_INCLASS_MEMBER_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_integral_int64_t::test()) + { + std::cerr << "Failed test for BOOST_NO_INTEGRAL_INT64_T at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_iosfwd::test()) + { + std::cerr << "Failed test for BOOST_NO_IOSFWD at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_iostream::test()) + { + std::cerr << "Failed test for BOOST_NO_IOSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_is_abstract::test()) + { + std::cerr << "Failed test for BOOST_NO_IS_ABSTRACT at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_templated_iterator_constructors::test()) + { + std::cerr << "Failed test for BOOST_NO_TEMPLATED_ITERATOR_CONSTRUCTORS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_lambdas::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_LAMBDAS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_limits::test()) + { + std::cerr << "Failed test for BOOST_NO_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_limits_compile_time_constants::test()) + { + std::cerr << "Failed test for BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_long_long_numeric_limits::test()) + { + std::cerr << "Failed test for BOOST_NO_LONG_LONG_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_long_long::test()) + { + std::cerr << "Failed test for BOOST_NO_LONG_LONG at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_member_function_specializations::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_member_templates::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_member_template_friends::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_member_template_keyword::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_pointer_to_member_template_parameters::test()) + { + std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_nested_friendship::test()) + { + std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_noexcept::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_NOEXCEPT at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_nullptr::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_operators_in_namespace::test()) + { + std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_template_partial_specialization::test()) + { + std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_partial_specialization_implicit_default_args::test()) + { + std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_private_in_aggregate::test()) + { + std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_pointer_to_member_const::test()) + { + std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_CONST at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_range_based_for::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_RANGE_BASED_FOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_raw_literals::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_RAW_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_unreachable_return_detection::test()) + { + std::cerr << "Failed test for BOOST_NO_UNREACHABLE_RETURN_DETECTION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_rtti::test()) + { + std::cerr << "Failed test for BOOST_NO_RTTI at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_rvalue_references::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_RVALUE_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_scoped_enums::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_SCOPED_ENUMS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_sfinae::test()) + { + std::cerr << "Failed test for BOOST_NO_SFINAE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_sfinae_expr::test()) + { + std::cerr << "Failed test for BOOST_NO_SFINAE_EXPR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_stringstream::test()) + { + std::cerr << "Failed test for BOOST_NO_STRINGSTREAM at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_static_assert::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_stdc_namespace::test()) + { + std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_allocator::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_distance::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_iterator::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_iterator_traits::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_locale::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_messages::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_MESSAGES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_min_max::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_MIN_MAX at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_output_iterator_assign::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_typeinfo::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_TYPEINFO at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_use_facet::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_USE_FACET at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_wstreambuf::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_WSTREAMBUF at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_std_wstring::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_swprintf::test()) + { + std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_template_aliases::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_templated_iostreams::test()) + { + std::cerr << "Failed test for BOOST_NO_TEMPLATED_IOSTREAMS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_template_templates::test()) + { + std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_cxx11_local_class_template_parameters::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_two_phase_name_lookup::test()) + { + std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_typeid::test()) @@ -1716,44 +1901,14 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_TYPENAME_WITH_CTOR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_hdr_array::test()) + if(0 != boost_no_cxx11_unicode_literals::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_ARRAY at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_UNICODE_LITERALS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_tr1_mem_fn::test()) + if(0 != boost_no_cxx11_unified_initialization_syntax::test()) { - std::cerr << "Failed test for BOOST_HAS_TR1_MEM_FN at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_alignas::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_ALIGNAS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_using_declaration_overloads_from_typename_base::test()) - { - std::cerr << "Failed test for BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_pthread_yield::test()) - { - std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_inclass_member_initialization::test()) - { - std::cerr << "Failed test for BOOST_NO_INCLASS_MEMBER_INITIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_typeinfo::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_TYPEINFO at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_variadic_macros::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_MACROS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_function_scope_using_declaration_breaks_adl::test()) @@ -1761,99 +1916,34 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_wstring::test()) + if(0 != boost_no_using_declaration_overloads_from_typename_base::test()) { - std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_ctype_functions::test()) + if(0 != boost_no_using_template::test()) { - std::cerr << "Failed test for BOOST_NO_CTYPE_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_USING_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_nullptr::test()) + if(0 != boost_no_cxx11_variadic_macros::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_NULLPTR at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_MACROS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_member_template_keyword::test()) + if(0 != boost_no_cxx11_variadic_templates::test()) { - std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_CXX11_VARIADIC_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_rvalue_references::test()) + if(0 != boost_no_void_returns::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_RVALUE_REFERENCES at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_VOID_RETURNS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_private_in_aggregate::test()) + if(0 != boost_no_intrinsic_wchar_t::test()) { - std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_allocator::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_swprintf::test()) - { - std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_final::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_FINAL at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_stdc_namespace::test()) - { - std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_two_phase_name_lookup::test()) - { - std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_hdr_forward_list::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_FORWARD_LIST at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_std_output_iterator_assign::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_OUTPUT_ITERATOR_ASSIGN at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_tr1_utility::test()) - { - std::cerr << "Failed test for BOOST_HAS_TR1_UTILITY at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_cxx11_non_public_defaulted_functions::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_dirent_h::test()) - { - std::cerr << "Failed test for BOOST_HAS_DIRENT_H at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_nested_friendship::test()) - { - std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_pointer_to_member_const::test()) - { - std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_CONST at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_has_ftime::test()) - { - std::cerr << "Failed test for BOOST_HAS_FTIME at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_INTRINSIC_WCHAR_T at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } return error_count; diff --git a/test/no_cxx14_binary_literals_fail.cpp b/test/no_cxx14_binary_literals_fail.cpp new file mode 100644 index 00000000..759e8719 --- /dev/null +++ b/test/no_cxx14_binary_literals_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_BINARY_LITERALS +// This file should not compile, if it does then +// BOOST_NO_CXX14_BINARY_LITERALS should not be defined. +// See file boost_no_cxx14_binary_literals.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_BINARY_LITERALS +#include "boost_no_cxx14_binary_literals.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_binary_literals::test(); +} + diff --git a/test/no_cxx14_binary_literals_pass.cpp b/test/no_cxx14_binary_literals_pass.cpp new file mode 100644 index 00000000..94debc27 --- /dev/null +++ b/test/no_cxx14_binary_literals_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_BINARY_LITERALS +// This file should compile, if it does not then +// BOOST_NO_CXX14_BINARY_LITERALS should be defined. +// See file boost_no_cxx14_binary_literals.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_BINARY_LITERALS +#include "boost_no_cxx14_binary_literals.ipp" +#else +namespace boost_no_cxx14_binary_literals = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_binary_literals::test(); +} + diff --git a/test/no_cxx14_constexpr_fail.cpp b/test/no_cxx14_constexpr_fail.cpp new file mode 100644 index 00000000..0028023b --- /dev/null +++ b/test/no_cxx14_constexpr_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_CONSTEXPR +// This file should not compile, if it does then +// BOOST_NO_CXX14_CONSTEXPR should not be defined. +// See file boost_no_cxx14_constexpr.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_CONSTEXPR +#include "boost_no_cxx14_constexpr.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_constexpr::test(); +} + diff --git a/test/no_cxx14_constexpr_pass.cpp b/test/no_cxx14_constexpr_pass.cpp new file mode 100644 index 00000000..8272f918 --- /dev/null +++ b/test/no_cxx14_constexpr_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_CONSTEXPR +// This file should compile, if it does not then +// BOOST_NO_CXX14_CONSTEXPR should be defined. +// See file boost_no_cxx14_constexpr.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_CONSTEXPR +#include "boost_no_cxx14_constexpr.ipp" +#else +namespace boost_no_cxx14_constexpr = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_constexpr::test(); +} + diff --git a/test/no_cxx14_decltype_auto_fail.cpp b/test/no_cxx14_decltype_auto_fail.cpp new file mode 100644 index 00000000..78639cf5 --- /dev/null +++ b/test/no_cxx14_decltype_auto_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_DECLTYPE_AUTO +// This file should not compile, if it does then +// BOOST_NO_CXX14_DECLTYPE_AUTO should not be defined. +// See file boost_no_cxx14_decltype_auto.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_DECLTYPE_AUTO +#include "boost_no_cxx14_decltype_auto.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_decltype_auto::test(); +} + diff --git a/test/no_cxx14_decltype_auto_pass.cpp b/test/no_cxx14_decltype_auto_pass.cpp new file mode 100644 index 00000000..e36cb64d --- /dev/null +++ b/test/no_cxx14_decltype_auto_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_DECLTYPE_AUTO +// This file should compile, if it does not then +// BOOST_NO_CXX14_DECLTYPE_AUTO should be defined. +// See file boost_no_cxx14_decltype_auto.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_DECLTYPE_AUTO +#include "boost_no_cxx14_decltype_auto.ipp" +#else +namespace boost_no_cxx14_decltype_auto = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_decltype_auto::test(); +} + diff --git a/test/no_cxx14_digit_separator_fail.cpp b/test/no_cxx14_digit_separator_fail.cpp new file mode 100644 index 00000000..99305f50 --- /dev/null +++ b/test/no_cxx14_digit_separator_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_DIGIT_SEPARATOR +// This file should not compile, if it does then +// BOOST_NO_CXX14_DIGIT_SEPARATOR should not be defined. +// See file boost_no_cxx14_digit_separator.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_DIGIT_SEPARATOR +#include "boost_no_cxx14_digit_separator.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_digit_separator::test(); +} + diff --git a/test/no_cxx14_digit_separator_pass.cpp b/test/no_cxx14_digit_separator_pass.cpp new file mode 100644 index 00000000..4c26df6f --- /dev/null +++ b/test/no_cxx14_digit_separator_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_DIGIT_SEPARATOR +// This file should compile, if it does not then +// BOOST_NO_CXX14_DIGIT_SEPARATOR should be defined. +// See file boost_no_cxx14_digit_separator.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_DIGIT_SEPARATOR +#include "boost_no_cxx14_digit_separator.ipp" +#else +namespace boost_no_cxx14_digit_separator = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_digit_separator::test(); +} + diff --git a/test/no_cxx14_generic_lambda_fail.cpp b/test/no_cxx14_generic_lambda_fail.cpp new file mode 100644 index 00000000..928f7653 --- /dev/null +++ b/test/no_cxx14_generic_lambda_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_GENERIC_LAMBDAS +// This file should not compile, if it does then +// BOOST_NO_CXX14_GENERIC_LAMBDAS should not be defined. +// See file boost_no_cxx14_generic_lambda.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_GENERIC_LAMBDAS +#include "boost_no_cxx14_generic_lambda.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_generic_lambdas::test(); +} + diff --git a/test/no_cxx14_generic_lambda_pass.cpp b/test/no_cxx14_generic_lambda_pass.cpp new file mode 100644 index 00000000..bef36ac6 --- /dev/null +++ b/test/no_cxx14_generic_lambda_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:16 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_GENERIC_LAMBDAS +// This file should compile, if it does not then +// BOOST_NO_CXX14_GENERIC_LAMBDAS should be defined. +// See file boost_no_cxx14_generic_lambda.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS +#include "boost_no_cxx14_generic_lambda.ipp" +#else +namespace boost_no_cxx14_generic_lambdas = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_generic_lambdas::test(); +} + diff --git a/test/no_cxx14_lambda_capture_fail.cpp b/test/no_cxx14_lambda_capture_fail.cpp new file mode 100644 index 00000000..515cc08e --- /dev/null +++ b/test/no_cxx14_lambda_capture_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +// This file should not compile, if it does then +// BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES should not be defined. +// See file boost_no_cxx14_lambda_capture.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#include "boost_no_cxx14_lambda_capture.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_initialized_lambda_captures::test(); +} + diff --git a/test/no_cxx14_lambda_capture_pass.cpp b/test/no_cxx14_lambda_capture_pass.cpp new file mode 100644 index 00000000..d5c09c5f --- /dev/null +++ b/test/no_cxx14_lambda_capture_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +// This file should compile, if it does not then +// BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES should be defined. +// See file boost_no_cxx14_lambda_capture.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#include "boost_no_cxx14_lambda_capture.ipp" +#else +namespace boost_no_cxx14_initialized_lambda_captures = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_initialized_lambda_captures::test(); +} + diff --git a/test/no_cxx14_member_init_fail.cpp b/test/no_cxx14_member_init_fail.cpp new file mode 100644 index 00000000..ba3ae4e2 --- /dev/null +++ b/test/no_cxx14_member_init_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_AGGREGATE_NSDMI +// This file should not compile, if it does then +// BOOST_NO_CXX14_AGGREGATE_NSDMI should not be defined. +// See file boost_no_cxx14_member_init.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_AGGREGATE_NSDMI +#include "boost_no_cxx14_member_init.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_aggregate_nsdmi::test(); +} + diff --git a/test/no_cxx14_member_init_pass.cpp b/test/no_cxx14_member_init_pass.cpp new file mode 100644 index 00000000..9dd8e897 --- /dev/null +++ b/test/no_cxx14_member_init_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_AGGREGATE_NSDMI +// This file should compile, if it does not then +// BOOST_NO_CXX14_AGGREGATE_NSDMI should be defined. +// See file boost_no_cxx14_member_init.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_AGGREGATE_NSDMI +#include "boost_no_cxx14_member_init.ipp" +#else +namespace boost_no_cxx14_aggregate_nsdmi = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_aggregate_nsdmi::test(); +} + diff --git a/test/no_cxx14_return_type_ded_fail.cpp b/test/no_cxx14_return_type_ded_fail.cpp new file mode 100644 index 00000000..a969c840 --- /dev/null +++ b/test/no_cxx14_return_type_ded_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +// This file should not compile, if it does then +// BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION should not be defined. +// See file boost_no_cxx14_return_type_ded.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#include "boost_no_cxx14_return_type_ded.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_return_type_deduction::test(); +} + diff --git a/test/no_cxx14_return_type_ded_pass.cpp b/test/no_cxx14_return_type_ded_pass.cpp new file mode 100644 index 00000000..f3e35f37 --- /dev/null +++ b/test/no_cxx14_return_type_ded_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +// This file should compile, if it does not then +// BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION should be defined. +// See file boost_no_cxx14_return_type_ded.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#include "boost_no_cxx14_return_type_ded.ipp" +#else +namespace boost_no_cxx14_return_type_deduction = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_return_type_deduction::test(); +} + diff --git a/test/no_cxx14_var_templ_fail.cpp b/test/no_cxx14_var_templ_fail.cpp new file mode 100644 index 00000000..438ccd7e --- /dev/null +++ b/test/no_cxx14_var_templ_fail.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_VARIABLE_TEMPLATES +// This file should not compile, if it does then +// BOOST_NO_CXX14_VARIABLE_TEMPLATES should not be defined. +// See file boost_no_cxx14_var_templ.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifdef BOOST_NO_CXX14_VARIABLE_TEMPLATES +#include "boost_no_cxx14_var_templ.ipp" +#else +#error "this file should not compile" +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_variable_templates::test(); +} + diff --git a/test/no_cxx14_var_templ_pass.cpp b/test/no_cxx14_var_templ_pass.cpp new file mode 100644 index 00000000..90c7b4c5 --- /dev/null +++ b/test/no_cxx14_var_templ_pass.cpp @@ -0,0 +1,37 @@ +// This file was automatically generated on Sat Oct 11 19:26:17 2014 +// by libs/config/tools/generate.cpp +// Copyright John Maddock 2002-4. +// Use, modification and distribution are subject to 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) + +// See http://www.boost.org/libs/config for the most recent version.// +// Revision $Id$ +// + + +// Test file for macro BOOST_NO_CXX14_VARIABLE_TEMPLATES +// This file should compile, if it does not then +// BOOST_NO_CXX14_VARIABLE_TEMPLATES should be defined. +// See file boost_no_cxx14_var_templ.ipp for details + +// Must not have BOOST_ASSERT_CONFIG set; it defeats +// the objective of this file: +#ifdef BOOST_ASSERT_CONFIG +# undef BOOST_ASSERT_CONFIG +#endif + +#include +#include "test.hpp" + +#ifndef BOOST_NO_CXX14_VARIABLE_TEMPLATES +#include "boost_no_cxx14_var_templ.ipp" +#else +namespace boost_no_cxx14_variable_templates = empty_boost; +#endif + +int main( int, char *[] ) +{ + return boost_no_cxx14_variable_templates::test(); +} + From 5e78d55d0ef59714a6ca11d69e26482662e308a9 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 12 Oct 2014 11:46:15 +0100 Subject: [PATCH 15/20] Fix spelling of one C++14 macro, improve C++14 auto-detection. --- include/boost/config/compiler/borland.hpp | 37 ++++++++++++++----- include/boost/config/compiler/codegear.hpp | 36 +++++++++++++----- include/boost/config/compiler/common_edg.hpp | 2 +- include/boost/config/compiler/cray.hpp | 11 ------ include/boost/config/compiler/digitalmars.hpp | 36 +++++++++++++----- include/boost/config/compiler/gcc.hpp | 2 +- include/boost/config/compiler/gcc_xml.hpp | 36 +++++++++++++----- include/boost/config/compiler/metrowerks.hpp | 36 +++++++++++++----- include/boost/config/compiler/mpw.hpp | 36 +++++++++++++----- include/boost/config/compiler/pathscale.hpp | 36 +++++++++++++----- include/boost/config/compiler/pgi.hpp | 36 +++++++++++++----- include/boost/config/compiler/sunpro_cc.hpp | 36 +++++++++++++----- include/boost/config/compiler/vacpp.hpp | 2 +- include/boost/config/compiler/visualc.hpp | 2 +- 14 files changed, 247 insertions(+), 97 deletions(-) diff --git a/include/boost/config/compiler/borland.hpp b/include/boost/config/compiler/borland.hpp index 384d1b58..c5764d09 100644 --- a/include/boost/config/compiler/borland.hpp +++ b/include/boost/config/compiler/borland.hpp @@ -198,16 +198,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES - +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif #if __BORLANDC__ >= 0x590 # define BOOST_HAS_TR1_HASH diff --git a/include/boost/config/compiler/codegear.hpp b/include/boost/config/compiler/codegear.hpp index 039261c8..b075003e 100644 --- a/include/boost/config/compiler/codegear.hpp +++ b/include/boost/config/compiler/codegear.hpp @@ -124,15 +124,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif // // TR1 macros: diff --git a/include/boost/config/compiler/common_edg.hpp b/include/boost/config/compiler/common_edg.hpp index 5c89b176..35a5ad13 100644 --- a/include/boost/config/compiler/common_edg.hpp +++ b/include/boost/config/compiler/common_edg.hpp @@ -127,7 +127,7 @@ # define BOOST_NO_CXX14_GENERIC_LAMBDAS #endif #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) -# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES #endif #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION diff --git a/include/boost/config/compiler/cray.hpp b/include/boost/config/compiler/cray.hpp index 9c387fb0..3f660433 100644 --- a/include/boost/config/compiler/cray.hpp +++ b/include/boost/config/compiler/cray.hpp @@ -61,17 +61,6 @@ #define BOOST_NO_CXX11_REF_QUALIFIERS #define BOOST_NO_CXX11_FINAL -// C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES - //#define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG #define BOOST_MATH_DISABLE_STD_FPCLASSIFY diff --git a/include/boost/config/compiler/digitalmars.hpp b/include/boost/config/compiler/digitalmars.hpp index f019cd0f..6ccf697c 100644 --- a/include/boost/config/compiler/digitalmars.hpp +++ b/include/boost/config/compiler/digitalmars.hpp @@ -84,15 +84,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif #if (__DMC__ <= 0x840) #error "Compiler not supported or configured - please reconfigure" diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index 96531342..e3b9d4a8 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -255,7 +255,7 @@ # define BOOST_NO_CXX14_GENERIC_LAMBDAS #endif #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) -# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES #endif #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION diff --git a/include/boost/config/compiler/gcc_xml.hpp b/include/boost/config/compiler/gcc_xml.hpp index 7a4294b3..85c9b3df 100644 --- a/include/boost/config/compiler/gcc_xml.hpp +++ b/include/boost/config/compiler/gcc_xml.hpp @@ -62,15 +62,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif #define BOOST_COMPILER "GCC-XML C++ version " __GCCXML__ diff --git a/include/boost/config/compiler/metrowerks.hpp b/include/boost/config/compiler/metrowerks.hpp index 66edb139..0fb5ec4d 100644 --- a/include/boost/config/compiler/metrowerks.hpp +++ b/include/boost/config/compiler/metrowerks.hpp @@ -127,15 +127,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif #define BOOST_COMPILER "Metrowerks CodeWarrior C++ version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION) diff --git a/include/boost/config/compiler/mpw.hpp b/include/boost/config/compiler/mpw.hpp index 92fa080e..64adf2d3 100644 --- a/include/boost/config/compiler/mpw.hpp +++ b/include/boost/config/compiler/mpw.hpp @@ -76,15 +76,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif // // versions check: diff --git a/include/boost/config/compiler/pathscale.hpp b/include/boost/config/compiler/pathscale.hpp index 987a3ed8..740a8ccd 100644 --- a/include/boost/config/compiler/pathscale.hpp +++ b/include/boost/config/compiler/pathscale.hpp @@ -84,13 +84,31 @@ # define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif #endif diff --git a/include/boost/config/compiler/pgi.hpp b/include/boost/config/compiler/pgi.hpp index b942ac64..2e24b3f7 100644 --- a/include/boost/config/compiler/pgi.hpp +++ b/include/boost/config/compiler/pgi.hpp @@ -122,15 +122,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif // // version check: // probably nothing to do here? diff --git a/include/boost/config/compiler/sunpro_cc.hpp b/include/boost/config/compiler/sunpro_cc.hpp index 01d696a3..856c68f3 100644 --- a/include/boost/config/compiler/sunpro_cc.hpp +++ b/include/boost/config/compiler/sunpro_cc.hpp @@ -135,15 +135,33 @@ #define BOOST_NO_CXX11_FINAL // C++ 14: -#define BOOST_NO_CXX14_AGGREGATE_NSDMI -#define BOOST_NO_CXX14_BINARY_LITERALS -#define BOOST_NO_CXX14_CONSTEXPR -#define BOOST_NO_CXX14_DECLTYPE_AUTO -#define BOOST_NO_CXX14_DIGIT_SEPARATOR -#define BOOST_NO_CXX14_GENERIC_LAMBDAS -#define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE -#define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) +# define BOOST_NO_CXX14_AGGREGATE_NSDMI +#endif +#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) +# define BOOST_NO_CXX14_BINARY_LITERALS +#endif +#if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) +# define BOOST_NO_CXX14_CONSTEXPR +#endif +#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) +# define BOOST_NO_CXX14_DECLTYPE_AUTO +#endif +#if (__cplusplus < 201304) // There's no SD6 check for this.... +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +#endif +#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +#endif +#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +#endif +#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +#endif +#if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) +# define BOOST_NO_CXX14_VARIABLE_TEMPLATES +#endif // // Version // diff --git a/include/boost/config/compiler/vacpp.hpp b/include/boost/config/compiler/vacpp.hpp index 0aa9389e..d0a8b4a0 100644 --- a/include/boost/config/compiler/vacpp.hpp +++ b/include/boost/config/compiler/vacpp.hpp @@ -152,7 +152,7 @@ # define BOOST_NO_CXX14_GENERIC_LAMBDAS #endif #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) -# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES #endif #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 03ef2b97..023b2389 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -212,7 +212,7 @@ # define BOOST_NO_CXX14_GENERIC_LAMBDAS #endif #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) -# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES #endif #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION From f9bfac12976abe36667c3465063bd505b9878cab Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 12 Oct 2014 13:20:11 +0100 Subject: [PATCH 16/20] Fix broken with clang, tentatively fix clang number separator option. --- include/boost/config/compiler/clang.hpp | 2 +- include/boost/config/stdlib/libstdcpp3.hpp | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/boost/config/compiler/clang.hpp b/include/boost/config/compiler/clang.hpp index 065ea3c7..74073b41 100644 --- a/include/boost/config/compiler/clang.hpp +++ b/include/boost/config/compiler/clang.hpp @@ -237,7 +237,7 @@ # define BOOST_NO_CXX14_VARIABLE_TEMPLATES #endif -#if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4) +#if ((__clang_major__ < 3) || (__clang_major__ == 3 && __clang_minor__ < 4)) || (__cplusplus < 201400) # define BOOST_NO_CXX14_DIGIT_SEPARATOR #endif diff --git a/include/boost/config/stdlib/libstdcpp3.hpp b/include/boost/config/stdlib/libstdcpp3.hpp index 6827cafa..f4a89862 100644 --- a/include/boost/config/stdlib/libstdcpp3.hpp +++ b/include/boost/config/stdlib/libstdcpp3.hpp @@ -209,6 +209,12 @@ // even for the simplest patterns such as "\d" or "[0-9]". This is the case at least in gcc up to 4.8, inclusively. # define BOOST_NO_CXX11_HDR_REGEX #endif + +#if defined(__clang_major__) && ((__clang_major__ < 3) || ((__clang_major__ == 3) && (__clang_minor__ < 7))) +// As of clang-3.6, libstdc++ header throws up errors with clang: +# define BOOST_NO_CXX11_HDR_ATOMIC +#endif + // C++0x headers not yet (fully!) implemented // # define BOOST_NO_CXX11_HDR_TYPE_TRAITS From 75f4069badc1727d1622d895b2114c91f4c803ac Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 12 Oct 2014 15:39:25 +0100 Subject: [PATCH 17/20] Improve GCC C++14 feature detection. --- include/boost/config/compiler/gcc.hpp | 32 ++++++++++++--------------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index e3b9d4a8..c1cd4cb7 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -233,33 +233,29 @@ #if (BOOST_GCC_VERSION < 40801) || !defined(BOOST_GCC_CXX11) # define BOOST_NO_CXX11_DECLTYPE_N3276 # define BOOST_NO_CXX11_REF_QUALIFIERS +# define BOOST_NO_CXX14_BINARY_LITERALS #endif +// C++14 features in 4.9.0 and later +// +#if (BOOST_GCC_VERSION < 40900) || (__cplusplus < 201300) +# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +# define BOOST_NO_CXX14_GENERIC_LAMBDAS +# define BOOST_NO_CXX14_DIGIT_SEPARATOR +# define BOOST_NO_CXX14_DECLTYPE_AUTO +# if !((BOOST_GCC_VERSION >= 40801) && (BOOST_GCC_VERSION < 40900) && defined(BOOST_GCC_CXX11)) +# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES +# endif +#endif + + // C++ 14: #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304) # define BOOST_NO_CXX14_AGGREGATE_NSDMI #endif -#if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304) -# define BOOST_NO_CXX14_BINARY_LITERALS -#endif #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304) # define BOOST_NO_CXX14_CONSTEXPR #endif -#if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304) -# define BOOST_NO_CXX14_DECLTYPE_AUTO -#endif -#if (__cplusplus < 201304) // There's no SD6 check for this.... -# define BOOST_NO_CXX14_DIGIT_SEPARATOR -#endif -#if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304) -# define BOOST_NO_CXX14_GENERIC_LAMBDAS -#endif -#if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304) -# define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES -#endif -#if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304) -# define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION -#endif #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304) # define BOOST_NO_CXX14_VARIABLE_TEMPLATES #endif From e725ad9776f06fa45d7f357d44498e3cb1eb81bb Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 12 Oct 2014 17:01:03 +0100 Subject: [PATCH 18/20] Fix C++14 macro docs. Regen docs. --- .../boost_config/boost_macro_reference.html | 207 ++++++++++++++++++ doc/html/index.html | 6 +- doc/macro_reference.qbk | 21 +- 3 files changed, 223 insertions(+), 11 deletions(-) diff --git a/doc/html/boost_config/boost_macro_reference.html b/doc/html/boost_config/boost_macro_reference.html index 59607598..29ffe9db 100644 --- a/doc/html/boost_config/boost_macro_reference.html +++ b/doc/html/boost_config/boost_macro_reference.html @@ -37,6 +37,10 @@ that describe C++11 features not supported
Macros that allow use of C++11 features with C++03 compilers
+
Macros + that describe C++14 features not supported
+
Macros + that allow use of C++14 features with C++11 or earlier compilers
Boost Helper Macros
Boost @@ -3451,6 +3455,209 @@
+

+ The following macros describe features in the 2014 ISO C++ standard, formerly + known as C++0y, that are not yet supported by a particular compiler or library. +

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ Macro +

+
+

+ Description +

+
+

+ BOOST_NO_CXX14_AGGREGATE_NSDMI +

+
+

+ The compiler does not support member initializer for aggregates + as in the following example: +

+
+

+

+
struct Foo
+{
+  int x, y = 42;
+};
+
+Foo foo = { 0 };
+
+

+

+
+
+

+ BOOST_NO_CXX14_BINARY_LITERALS +

+
+

+ The compiler does not binary literals (e.g. 0b1010). +

+
+

+ BOOST_NO_CXX14_CONSTEXPR +

+
+

+ The compiler does not support relaxed constexpr. +

+
+

+ BOOST_NO_CXX14_DECLTYPE_AUTO +

+
+

+ The compiler does not support decltype(auto). +

+
+

+ BOOST_NO_CXX14_DIGIT_SEPARATOR +

+
+

+ The compiler does not support digit separators (e.g. 1'000'000). +

+
+

+ BOOST_NO_CXX14_GENERIC_LAMBDAS +

+
+

+ The compiler does not support generic lambda (e.g. [](auto + v){ + }). +

+
+

+ BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE +

+
+

+ The compiler does not support initialized lambda capture (e.g. + [foo + = 42]{ }). +

+
+

+ BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION +

+
+

+ The compiler does not support return type deduction for normal + functions (e.g. auto f() + { return + val; + }). +

+
+

+ BOOST_NO_CXX14_VARIABLE_TEMPLATES +

+
+

+ The compiler does not support variable template (e.g. template <class T> T + kibi = + T(1024);). +

+
+
+
+ +

+ The following macros allow use of C++14 features even with compilers that + do not yet provide compliant C++14 support. +

+
++++ + + + + + + + + +
+

+ Macro +

+
+

+ Description +

+
+

+ BOOST_CXX14_CONSTEXPR +

+
+

+ This macro works similar to BOOST_CONSTEXPR, but expands to constexpr only if the C++14 "relaxed" + constexpr is available. +

+
+
+
+ diff --git a/doc/html/index.html b/doc/html/index.html index 20964d13..c184e488 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -68,6 +68,10 @@ that describe C++11 features not supported
Macros that allow use of C++11 features with C++03 compilers
+
Macros + that describe C++14 features not supported
+
Macros + that allow use of C++14 features with C++11 or earlier compilers
Boost Helper Macros
Boost @@ -984,7 +988,7 @@ - +

Last revised: October 11, 2014 at 12:11:50 GMT

Last revised: October 12, 2014 at 16:00:14 GMT


diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index 67151578..72b41cde 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -878,6 +878,17 @@ that are not yet supported by a particular compiler or library. [table [[Macro ][Description ]] [[`BOOST_NO_CXX14_AGGREGATE_NSDMI`][The compiler does not support member initializer for aggregates as in the following example: +[: +`` +struct Foo +{ + int x, y = 42; +}; + +Foo foo = { 0 }; +`` +] +]] [[`BOOST_NO_CXX14_BINARY_LITERALS`][The compiler does not binary literals (e.g. `0b1010`).]] [[`BOOST_NO_CXX14_CONSTEXPR`][The compiler does not support relaxed `constexpr`.]] [[`BOOST_NO_CXX14_DECLTYPE_AUTO`][The compiler does not support `decltype(auto)`.]] @@ -886,16 +897,6 @@ that are not yet supported by a particular compiler or library. [[`BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURE`][The compiler does not support initialized lambda capture (e.g. `[foo = 42]{ }`).]] [[`BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION`][The compiler does not support return type deduction for normal functions (e.g. `auto f() { return val; }`).]] [[`BOOST_NO_CXX14_VARIABLE_TEMPLATES`][The compiler does not support variable template (e.g. `template T kibi = T(1024);`).]] -[: -`` -struct Foo -{ -int x, y = 42; -}; -Foo foo = { 0 }; -`` -] -]] ] [endsect] From eaa5c714c868d666d3f849f726f6f85612514a50 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Mon, 13 Oct 2014 13:12:59 +0100 Subject: [PATCH 19/20] Change generate.cpp to alphabetize it's results to reduce churn in the results. Regenerate the generated files. --- checks/Jamfile.v2 | 68 +++++++------- checks/test_case.cpp | 88 +++++++++--------- test/all/Jamfile.v2 | 68 +++++++------- test/config_info.cpp | 1 + test/config_test.cpp | 212 +++++++++++++++++++++---------------------- tools/generate.cpp | 12 ++- 6 files changed, 229 insertions(+), 220 deletions(-) diff --git a/checks/Jamfile.v2 b/checks/Jamfile.v2 index a55b7ab1..4d2f4373 100644 --- a/checks/Jamfile.v2 +++ b/checks/Jamfile.v2 @@ -1,6 +1,6 @@ # # *** DO NOT EDIT THIS FILE BY HAND *** -# This file was automatically generated on Sat Oct 11 19:26:21 2014 +# This file was automatically generated on Mon Oct 13 13:09:13 2014 # by libs/config/tools/generate.cpp # Copyright John Maddock. # Use, modification and distribution are subject to the @@ -80,9 +80,6 @@ explicit nrvo ; run-simple test_case.cpp : : : TEST_BOOST_HAS_PARTIAL_STD_ALLOCATOR : partial_std_allocator ; alias partial_std_allocator : partial_std_allocator.output ; explicit partial_std_allocator ; -run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREADS : pthreads ; -alias pthreads : pthreads.output ; -explicit pthreads ; run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_DELAY_NP : pthread_delay_np ; alias pthread_delay_np : pthread_delay_np.output ; explicit pthread_delay_np ; @@ -92,6 +89,9 @@ explicit pthread_mutexattr_settype ; run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREAD_YIELD : pthread_yield ; alias pthread_yield : pthread_yield.output ; explicit pthread_yield ; +run-simple test_case.cpp : : : TEST_BOOST_HAS_PTHREADS : pthreads ; +alias pthreads : pthreads.output ; +explicit pthreads ; run-simple test_case.cpp : : : TEST_BOOST_HAS_RVALUE_REFS : rvalue_refs ; alias rvalue_refs : rvalue_refs.output ; explicit rvalue_refs ; @@ -290,12 +290,12 @@ explicit cxx11_hdr_thread ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TUPLE : cxx11_hdr_tuple ; alias cxx11_hdr_tuple : cxx11_hdr_tuple.output ; explicit cxx11_hdr_tuple ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPEINDEX : cxx11_hdr_typeindex ; -alias cxx11_hdr_typeindex : cxx11_hdr_typeindex.output ; -explicit cxx11_hdr_typeindex ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS : cxx11_hdr_type_traits ; alias cxx11_hdr_type_traits : cxx11_hdr_type_traits.output ; explicit cxx11_hdr_type_traits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_TYPEINDEX : cxx11_hdr_typeindex ; +alias cxx11_hdr_typeindex : cxx11_hdr_typeindex.output ; +explicit cxx11_hdr_typeindex ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP : cxx11_hdr_unordered_map ; alias cxx11_hdr_unordered_map : cxx11_hdr_unordered_map.output ; explicit cxx11_hdr_unordered_map ; @@ -377,18 +377,18 @@ explicit dependent_nested_derivations ; run-simple test_case.cpp : : : TEST_BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS : dependent_types_in_template_value_parameters ; alias dependent_types_in_template_value_parameters : dependent_types_in_template_value_parameters.output ; explicit dependent_types_in_template_value_parameters ; -run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTIONS : exceptions ; -alias exceptions : exceptions.output ; -explicit exceptions ; run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE : exception_std_namespace ; alias exception_std_namespace : exception_std_namespace.output ; explicit exception_std_namespace ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS : cxx11_explicit_conversion_operators ; -alias cxx11_explicit_conversion_operators : cxx11_explicit_conversion_operators.output ; -explicit cxx11_explicit_conversion_operators ; +run-simple test_case.cpp : : : TEST_BOOST_NO_EXCEPTIONS : exceptions ; +alias exceptions : exceptions.output ; +explicit exceptions ; run-simple test_case.cpp : : : TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS : explicit_function_template_arguments ; alias explicit_function_template_arguments : explicit_function_template_arguments.output ; explicit explicit_function_template_arguments ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS : cxx11_explicit_conversion_operators ; +alias cxx11_explicit_conversion_operators : cxx11_explicit_conversion_operators.output ; +explicit cxx11_explicit_conversion_operators ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE : cxx11_extern_template ; alias cxx11_extern_template : cxx11_extern_template.output ; explicit cxx11_extern_template ; @@ -398,15 +398,15 @@ explicit fenv_h ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS : cxx11_fixed_length_variadic_template_expansion_packs ; alias cxx11_fixed_length_variadic_template_expansion_packs : cxx11_fixed_length_variadic_template_expansion_packs.output ; explicit cxx11_fixed_length_variadic_template_expansion_packs ; +run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING : function_template_ordering ; +alias function_template_ordering : function_template_ordering.output ; +explicit function_template_ordering ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS : cxx11_function_template_default_args ; alias cxx11_function_template_default_args : cxx11_function_template_default_args.output ; explicit cxx11_function_template_default_args ; run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS : function_type_specializations ; alias function_type_specializations : function_type_specializations.output ; explicit function_type_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING : function_template_ordering ; -alias function_template_ordering : function_template_ordering.output ; -explicit function_template_ordering ; run-simple test_case.cpp : : : TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS : ms_int64_numeric_limits ; alias ms_int64_numeric_limits : ms_int64_numeric_limits.output ; explicit ms_int64_numeric_limits ; @@ -446,18 +446,18 @@ explicit long_long ; run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS : member_function_specializations ; alias member_function_specializations : member_function_specializations.output ; explicit member_function_specializations ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATES : member_templates ; -alias member_templates : member_templates.output ; -explicit member_templates ; -run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS : member_template_friends ; -alias member_template_friends : member_template_friends.output ; -explicit member_template_friends ; run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD : member_template_keyword ; alias member_template_keyword : member_template_keyword.output ; explicit member_template_keyword ; run-simple test_case.cpp : : : TEST_BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS : pointer_to_member_template_parameters ; alias pointer_to_member_template_parameters : pointer_to_member_template_parameters.output ; explicit pointer_to_member_template_parameters ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS : member_template_friends ; +alias member_template_friends : member_template_friends.output ; +explicit member_template_friends ; +run-simple test_case.cpp : : : TEST_BOOST_NO_MEMBER_TEMPLATES : member_templates ; +alias member_templates : member_templates.output ; +explicit member_templates ; run-simple test_case.cpp : : : TEST_BOOST_NO_NESTED_FRIENDSHIP : nested_friendship ; alias nested_friendship : nested_friendship.output ; explicit nested_friendship ; @@ -470,12 +470,12 @@ explicit cxx11_nullptr ; run-simple test_case.cpp : : : TEST_BOOST_NO_OPERATORS_IN_NAMESPACE : operators_in_namespace ; alias operators_in_namespace : operators_in_namespace.output ; explicit operators_in_namespace ; -run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION : template_partial_specialization ; -alias template_partial_specialization : template_partial_specialization.output ; -explicit template_partial_specialization ; run-simple test_case.cpp : : : TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS : partial_specialization_implicit_default_args ; alias partial_specialization_implicit_default_args : partial_specialization_implicit_default_args.output ; explicit partial_specialization_implicit_default_args ; +run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION : template_partial_specialization ; +alias template_partial_specialization : template_partial_specialization.output ; +explicit template_partial_specialization ; run-simple test_case.cpp : : : TEST_BOOST_NO_PRIVATE_IN_AGGREGATE : private_in_aggregate ; alias private_in_aggregate : private_in_aggregate.output ; explicit private_in_aggregate ; @@ -512,21 +512,18 @@ explicit stringstream ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_STATIC_ASSERT : cxx11_static_assert ; alias cxx11_static_assert : cxx11_static_assert.output ; explicit cxx11_static_assert ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STDC_NAMESPACE : stdc_namespace ; -alias stdc_namespace : stdc_namespace.output ; -explicit stdc_namespace ; run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ALLOCATOR : std_allocator ; alias std_allocator : std_allocator.output ; explicit std_allocator ; run-simple test_case.cpp : : : TEST_BOOST_NO_STD_DISTANCE : std_distance ; alias std_distance : std_distance.output ; explicit std_distance ; -run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR : std_iterator ; -alias std_iterator : std_iterator.output ; -explicit std_iterator ; run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR_TRAITS : std_iterator_traits ; alias std_iterator_traits : std_iterator_traits.output ; explicit std_iterator_traits ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STD_ITERATOR : std_iterator ; +alias std_iterator : std_iterator.output ; +explicit std_iterator ; run-simple test_case.cpp : : : TEST_BOOST_NO_STD_LOCALE : std_locale ; alias std_locale : std_locale.output ; explicit std_locale ; @@ -551,9 +548,15 @@ explicit std_wstreambuf ; run-simple test_case.cpp : : : TEST_BOOST_NO_STD_WSTRING : std_wstring ; alias std_wstring : std_wstring.output ; explicit std_wstring ; +run-simple test_case.cpp : : : TEST_BOOST_NO_STDC_NAMESPACE : stdc_namespace ; +alias stdc_namespace : stdc_namespace.output ; +explicit stdc_namespace ; run-simple test_case.cpp : : : TEST_BOOST_NO_SWPRINTF : swprintf ; alias swprintf : swprintf.output ; explicit swprintf ; +run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS : cxx11_local_class_template_parameters ; +alias cxx11_local_class_template_parameters : cxx11_local_class_template_parameters.output ; +explicit cxx11_local_class_template_parameters ; run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES : cxx11_template_aliases ; alias cxx11_template_aliases : cxx11_template_aliases.output ; explicit cxx11_template_aliases ; @@ -563,9 +566,6 @@ explicit templated_iostreams ; run-simple test_case.cpp : : : TEST_BOOST_NO_TEMPLATE_TEMPLATES : template_templates ; alias template_templates : template_templates.output ; explicit template_templates ; -run-simple test_case.cpp : : : TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS : cxx11_local_class_template_parameters ; -alias cxx11_local_class_template_parameters : cxx11_local_class_template_parameters.output ; -explicit cxx11_local_class_template_parameters ; run-simple test_case.cpp : : : TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP : two_phase_name_lookup ; alias two_phase_name_lookup : two_phase_name_lookup.output ; explicit two_phase_name_lookup ; diff --git a/checks/test_case.cpp b/checks/test_case.cpp index a7a624ad..708160e1 100644 --- a/checks/test_case.cpp +++ b/checks/test_case.cpp @@ -1,4 +1,4 @@ -// This file was automatically generated on Sat Oct 11 19:26:21 2014 +// This file was automatically generated on Mon Oct 13 13:09:13 2014 // by libs/config/tools/generate.cpp // Copyright John Maddock 2002-4. // Use, modification and distribution are subject to the @@ -81,10 +81,6 @@ namespace test = boost_has_nrvo; # include "../test/boost_has_part_alloc.ipp" namespace test = boost_has_partial_std_allocator; #endif -#ifdef TEST_BOOST_HAS_PTHREADS -# include "../test/boost_has_pthreads.ipp" -namespace test = boost_has_pthreads; -#endif #ifdef TEST_BOOST_HAS_PTHREAD_DELAY_NP # include "../test/boost_has_pthread_delay_np.ipp" namespace test = boost_has_pthread_delay_np; @@ -97,6 +93,10 @@ namespace test = boost_has_pthread_mutexattr_settype; # include "../test/boost_has_pthread_yield.ipp" namespace test = boost_has_pthread_yield; #endif +#ifdef TEST_BOOST_HAS_PTHREADS +# include "../test/boost_has_pthreads.ipp" +namespace test = boost_has_pthreads; +#endif #ifdef TEST_BOOST_HAS_RVALUE_REFS # include "../test/boost_has_rvalue_refs.ipp" namespace test = boost_has_rvalue_refs; @@ -361,14 +361,14 @@ namespace test = boost_no_cxx11_hdr_thread; # include "../test/boost_no_cxx11_hdr_tuple.ipp" namespace test = boost_no_cxx11_hdr_tuple; #endif -#ifdef TEST_BOOST_NO_CXX11_HDR_TYPEINDEX -# include "../test/boost_no_cxx11_hdr_typeindex.ipp" -namespace test = boost_no_cxx11_hdr_typeindex; -#endif #ifdef TEST_BOOST_NO_CXX11_HDR_TYPE_TRAITS # include "../test/boost_no_cxx11_hdr_type_traits.ipp" namespace test = boost_no_cxx11_hdr_type_traits; #endif +#ifdef TEST_BOOST_NO_CXX11_HDR_TYPEINDEX +# include "../test/boost_no_cxx11_hdr_typeindex.ipp" +namespace test = boost_no_cxx11_hdr_typeindex; +#endif #ifdef TEST_BOOST_NO_CXX11_HDR_UNORDERED_MAP # include "../test/boost_no_cxx11_hdr_unordered_map.ipp" namespace test = boost_no_cxx11_hdr_unordered_map; @@ -477,22 +477,22 @@ namespace test = boost_no_dependent_nested_derivations; # include "../test/boost_no_dep_val_param.ipp" namespace test = boost_no_dependent_types_in_template_value_parameters; #endif -#ifdef TEST_BOOST_NO_EXCEPTIONS -# include "../test/boost_no_exceptions.ipp" -namespace test = boost_no_exceptions; -#endif #ifdef TEST_BOOST_NO_EXCEPTION_STD_NAMESPACE # include "../test/boost_no_excep_std.ipp" namespace test = boost_no_exception_std_namespace; #endif -#ifdef TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -# include "../test/boost_no_explicit_cvt_ops.ipp" -namespace test = boost_no_cxx11_explicit_conversion_operators; +#ifdef TEST_BOOST_NO_EXCEPTIONS +# include "../test/boost_no_exceptions.ipp" +namespace test = boost_no_exceptions; #endif #ifdef TEST_BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS # include "../test/boost_no_exp_func_tem_arg.ipp" namespace test = boost_no_explicit_function_template_arguments; #endif +#ifdef TEST_BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +# include "../test/boost_no_explicit_cvt_ops.ipp" +namespace test = boost_no_cxx11_explicit_conversion_operators; +#endif #ifdef TEST_BOOST_NO_CXX11_EXTERN_TEMPLATE # include "../test/boost_no_extern_template.ipp" namespace test = boost_no_cxx11_extern_template; @@ -505,6 +505,10 @@ namespace test = boost_no_fenv_h; # include "../test/boost_no_fixed_len_variadic_templates.ipp" namespace test = boost_no_cxx11_fixed_length_variadic_template_expansion_packs; #endif +#ifdef TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING +# include "../test/boost_no_func_tmp_order.ipp" +namespace test = boost_no_function_template_ordering; +#endif #ifdef TEST_BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS # include "../test/boost_no_function_template_default_args.ipp" namespace test = boost_no_cxx11_function_template_default_args; @@ -513,10 +517,6 @@ namespace test = boost_no_cxx11_function_template_default_args; # include "../test/boost_no_function_type_spec.ipp" namespace test = boost_no_function_type_specializations; #endif -#ifdef TEST_BOOST_NO_FUNCTION_TEMPLATE_ORDERING -# include "../test/boost_no_func_tmp_order.ipp" -namespace test = boost_no_function_template_ordering; -#endif #ifdef TEST_BOOST_NO_MS_INT64_NUMERIC_LIMITS # include "../test/boost_no_i64_limits.ipp" namespace test = boost_no_ms_int64_numeric_limits; @@ -569,14 +569,6 @@ namespace test = boost_no_long_long; # include "../test/boost_no_mem_func_spec.ipp" namespace test = boost_no_member_function_specializations; #endif -#ifdef TEST_BOOST_NO_MEMBER_TEMPLATES -# include "../test/boost_no_mem_templates.ipp" -namespace test = boost_no_member_templates; -#endif -#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS -# include "../test/boost_no_mem_templ_frnds.ipp" -namespace test = boost_no_member_template_friends; -#endif #ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_KEYWORD # include "../test/boost_no_mem_tem_keyword.ipp" namespace test = boost_no_member_template_keyword; @@ -585,6 +577,14 @@ namespace test = boost_no_member_template_keyword; # include "../test/boost_no_mem_tem_pnts.ipp" namespace test = boost_no_pointer_to_member_template_parameters; #endif +#ifdef TEST_BOOST_NO_MEMBER_TEMPLATE_FRIENDS +# include "../test/boost_no_mem_templ_frnds.ipp" +namespace test = boost_no_member_template_friends; +#endif +#ifdef TEST_BOOST_NO_MEMBER_TEMPLATES +# include "../test/boost_no_mem_templates.ipp" +namespace test = boost_no_member_templates; +#endif #ifdef TEST_BOOST_NO_NESTED_FRIENDSHIP # include "../test/boost_no_nested_friendship.ipp" namespace test = boost_no_nested_friendship; @@ -601,14 +601,14 @@ namespace test = boost_no_cxx11_nullptr; # include "../test/boost_no_ops_in_namespace.ipp" namespace test = boost_no_operators_in_namespace; #endif -#ifdef TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION -# include "../test/boost_no_partial_spec.ipp" -namespace test = boost_no_template_partial_specialization; -#endif #ifdef TEST_BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS # include "../test/boost_no_part_spec_def_args.ipp" namespace test = boost_no_partial_specialization_implicit_default_args; #endif +#ifdef TEST_BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION +# include "../test/boost_no_partial_spec.ipp" +namespace test = boost_no_template_partial_specialization; +#endif #ifdef TEST_BOOST_NO_PRIVATE_IN_AGGREGATE # include "../test/boost_no_priv_aggregate.ipp" namespace test = boost_no_private_in_aggregate; @@ -657,10 +657,6 @@ namespace test = boost_no_stringstream; # include "../test/boost_no_static_assert.ipp" namespace test = boost_no_cxx11_static_assert; #endif -#ifdef TEST_BOOST_NO_STDC_NAMESPACE -# include "../test/boost_no_stdc_namespace.ipp" -namespace test = boost_no_stdc_namespace; -#endif #ifdef TEST_BOOST_NO_STD_ALLOCATOR # include "../test/boost_no_std_allocator.ipp" namespace test = boost_no_std_allocator; @@ -669,14 +665,14 @@ namespace test = boost_no_std_allocator; # include "../test/boost_no_std_distance.ipp" namespace test = boost_no_std_distance; #endif -#ifdef TEST_BOOST_NO_STD_ITERATOR -# include "../test/boost_no_std_iterator.ipp" -namespace test = boost_no_std_iterator; -#endif #ifdef TEST_BOOST_NO_STD_ITERATOR_TRAITS # include "../test/boost_no_std_iter_traits.ipp" namespace test = boost_no_std_iterator_traits; #endif +#ifdef TEST_BOOST_NO_STD_ITERATOR +# include "../test/boost_no_std_iterator.ipp" +namespace test = boost_no_std_iterator; +#endif #ifdef TEST_BOOST_NO_STD_LOCALE # include "../test/boost_no_std_locale.ipp" namespace test = boost_no_std_locale; @@ -709,10 +705,18 @@ namespace test = boost_no_std_wstreambuf; # include "../test/boost_no_std_wstring.ipp" namespace test = boost_no_std_wstring; #endif +#ifdef TEST_BOOST_NO_STDC_NAMESPACE +# include "../test/boost_no_stdc_namespace.ipp" +namespace test = boost_no_stdc_namespace; +#endif #ifdef TEST_BOOST_NO_SWPRINTF # include "../test/boost_no_swprintf.ipp" namespace test = boost_no_swprintf; #endif +#ifdef TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +# include "../test/boost_no_tem_local_classes.ipp" +namespace test = boost_no_cxx11_local_class_template_parameters; +#endif #ifdef TEST_BOOST_NO_CXX11_TEMPLATE_ALIASES # include "../test/boost_no_template_aliases.ipp" namespace test = boost_no_cxx11_template_aliases; @@ -725,10 +729,6 @@ namespace test = boost_no_templated_iostreams; # include "../test/boost_no_template_template.ipp" namespace test = boost_no_template_templates; #endif -#ifdef TEST_BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -# include "../test/boost_no_tem_local_classes.ipp" -namespace test = boost_no_cxx11_local_class_template_parameters; -#endif #ifdef TEST_BOOST_NO_TWO_PHASE_NAME_LOOKUP # include "../test/boost_no_two_phase_lookup.ipp" namespace test = boost_no_two_phase_name_lookup; diff --git a/test/all/Jamfile.v2 b/test/all/Jamfile.v2 index 9be35d97..fe833397 100644 --- a/test/all/Jamfile.v2 +++ b/test/all/Jamfile.v2 @@ -1,7 +1,7 @@ # # Regression test Jamfile for boost configuration setup. # *** DO NOT EDIT THIS FILE BY HAND *** -# This file was automatically generated on Sat Oct 11 19:26:21 2014 +# This file was automatically generated on Mon Oct 13 13:09:12 2014 # by libs/config/tools/generate.cpp # Copyright John Maddock. # Use, modification and distribution are subject to the @@ -76,9 +76,6 @@ test-suite "BOOST_HAS_NRVO" : test-suite "BOOST_HAS_PARTIAL_STD_ALLOCATOR" : [ run ../has_part_alloc_pass.cpp ] [ compile-fail ../has_part_alloc_fail.cpp ] ; -test-suite "BOOST_HAS_PTHREADS" : -[ run ../has_pthreads_pass.cpp ] -[ compile-fail ../has_pthreads_fail.cpp ] ; test-suite "BOOST_HAS_PTHREAD_DELAY_NP" : [ run ../has_pthread_delay_np_pass.cpp ] [ compile-fail ../has_pthread_delay_np_fail.cpp ] ; @@ -88,6 +85,9 @@ test-suite "BOOST_HAS_PTHREAD_MUTEXATTR_SETTYPE" : test-suite "BOOST_HAS_PTHREAD_YIELD" : [ run ../has_pthread_yield_pass.cpp ] [ compile-fail ../has_pthread_yield_fail.cpp ] ; +test-suite "BOOST_HAS_PTHREADS" : +[ run ../has_pthreads_pass.cpp ] +[ compile-fail ../has_pthreads_fail.cpp ] ; test-suite "BOOST_HAS_RVALUE_REFS" : [ run ../has_rvalue_refs_pass.cpp ] [ compile-fail ../has_rvalue_refs_fail.cpp ] ; @@ -286,12 +286,12 @@ test-suite "BOOST_NO_CXX11_HDR_THREAD" : test-suite "BOOST_NO_CXX11_HDR_TUPLE" : [ run ../no_cxx11_hdr_tuple_pass.cpp ] [ compile-fail ../no_cxx11_hdr_tuple_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" : -[ run ../no_cxx11_hdr_typeindex_pass.cpp ] -[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ; test-suite "BOOST_NO_CXX11_HDR_TYPE_TRAITS" : [ run ../no_cxx11_hdr_type_traits_pass.cpp ] [ compile-fail ../no_cxx11_hdr_type_traits_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_HDR_TYPEINDEX" : +[ run ../no_cxx11_hdr_typeindex_pass.cpp ] +[ compile-fail ../no_cxx11_hdr_typeindex_fail.cpp ] ; test-suite "BOOST_NO_CXX11_HDR_UNORDERED_MAP" : [ run ../no_cxx11_hdr_unordered_map_pass.cpp ] [ compile-fail ../no_cxx11_hdr_unordered_map_fail.cpp ] ; @@ -373,18 +373,18 @@ test-suite "BOOST_NO_DEPENDENT_NESTED_DERIVATIONS" : test-suite "BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS" : [ run ../no_dep_val_param_pass.cpp ] [ compile-fail ../no_dep_val_param_fail.cpp ] ; -test-suite "BOOST_NO_EXCEPTIONS" : -[ run ../no_exceptions_pass.cpp ] -[ compile-fail ../no_exceptions_fail.cpp ] ; test-suite "BOOST_NO_EXCEPTION_STD_NAMESPACE" : [ run ../no_excep_std_pass.cpp ] [ compile-fail ../no_excep_std_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" : -[ run ../no_explicit_cvt_ops_pass.cpp ] -[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ; +test-suite "BOOST_NO_EXCEPTIONS" : +[ run ../no_exceptions_pass.cpp ] +[ compile-fail ../no_exceptions_fail.cpp ] ; test-suite "BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS" : [ run ../no_exp_func_tem_arg_pass.cpp ] [ compile-fail ../no_exp_func_tem_arg_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS" : +[ run ../no_explicit_cvt_ops_pass.cpp ] +[ compile-fail ../no_explicit_cvt_ops_fail.cpp ] ; test-suite "BOOST_NO_CXX11_EXTERN_TEMPLATE" : [ run ../no_extern_template_pass.cpp ] [ compile-fail ../no_extern_template_fail.cpp ] ; @@ -394,15 +394,15 @@ test-suite "BOOST_NO_FENV_H" : test-suite "BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS" : [ run ../no_fixed_len_variadic_templates_pass.cpp ] [ compile-fail ../no_fixed_len_variadic_templates_fail.cpp ] ; +test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" : +[ run ../no_func_tmp_order_pass.cpp ] +[ compile-fail ../no_func_tmp_order_fail.cpp ] ; test-suite "BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS" : [ run ../no_function_template_default_args_pass.cpp ] [ compile-fail ../no_function_template_default_args_fail.cpp ] ; test-suite "BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS" : [ run ../no_function_type_spec_pass.cpp ] [ compile-fail ../no_function_type_spec_fail.cpp ] ; -test-suite "BOOST_NO_FUNCTION_TEMPLATE_ORDERING" : -[ run ../no_func_tmp_order_pass.cpp ] -[ compile-fail ../no_func_tmp_order_fail.cpp ] ; test-suite "BOOST_NO_MS_INT64_NUMERIC_LIMITS" : [ run ../no_i64_limits_pass.cpp ] [ compile-fail ../no_i64_limits_fail.cpp ] ; @@ -442,18 +442,18 @@ test-suite "BOOST_NO_LONG_LONG" : test-suite "BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS" : [ run ../no_mem_func_spec_pass.cpp ] [ compile-fail ../no_mem_func_spec_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_TEMPLATES" : -[ run ../no_mem_templates_pass.cpp ] -[ compile-fail ../no_mem_templates_fail.cpp ] ; -test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" : -[ run ../no_mem_templ_frnds_pass.cpp ] -[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ; test-suite "BOOST_NO_MEMBER_TEMPLATE_KEYWORD" : [ run ../no_mem_tem_keyword_pass.cpp ] [ compile-fail ../no_mem_tem_keyword_fail.cpp ] ; test-suite "BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS" : [ run ../no_mem_tem_pnts_pass.cpp ] [ compile-fail ../no_mem_tem_pnts_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_TEMPLATE_FRIENDS" : +[ run ../no_mem_templ_frnds_pass.cpp ] +[ compile-fail ../no_mem_templ_frnds_fail.cpp ] ; +test-suite "BOOST_NO_MEMBER_TEMPLATES" : +[ run ../no_mem_templates_pass.cpp ] +[ compile-fail ../no_mem_templates_fail.cpp ] ; test-suite "BOOST_NO_NESTED_FRIENDSHIP" : [ run ../no_nested_friendship_pass.cpp ] [ compile-fail ../no_nested_friendship_fail.cpp ] ; @@ -466,12 +466,12 @@ test-suite "BOOST_NO_CXX11_NULLPTR" : test-suite "BOOST_NO_OPERATORS_IN_NAMESPACE" : [ run ../no_ops_in_namespace_pass.cpp ] [ compile-fail ../no_ops_in_namespace_fail.cpp ] ; -test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" : -[ run ../no_partial_spec_pass.cpp ] -[ compile-fail ../no_partial_spec_fail.cpp ] ; test-suite "BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS" : [ run ../no_part_spec_def_args_pass.cpp ] [ compile-fail ../no_part_spec_def_args_fail.cpp ] ; +test-suite "BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION" : +[ run ../no_partial_spec_pass.cpp ] +[ compile-fail ../no_partial_spec_fail.cpp ] ; test-suite "BOOST_NO_PRIVATE_IN_AGGREGATE" : [ run ../no_priv_aggregate_pass.cpp ] [ compile-fail ../no_priv_aggregate_fail.cpp ] ; @@ -508,21 +508,18 @@ test-suite "BOOST_NO_STRINGSTREAM" : test-suite "BOOST_NO_CXX11_STATIC_ASSERT" : [ run ../no_static_assert_pass.cpp ] [ compile-fail ../no_static_assert_fail.cpp ] ; -test-suite "BOOST_NO_STDC_NAMESPACE" : -[ run ../no_stdc_namespace_pass.cpp ] -[ compile-fail ../no_stdc_namespace_fail.cpp ] ; test-suite "BOOST_NO_STD_ALLOCATOR" : [ run ../no_std_allocator_pass.cpp ] [ compile-fail ../no_std_allocator_fail.cpp ] ; test-suite "BOOST_NO_STD_DISTANCE" : [ run ../no_std_distance_pass.cpp ] [ compile-fail ../no_std_distance_fail.cpp ] ; -test-suite "BOOST_NO_STD_ITERATOR" : -[ run ../no_std_iterator_pass.cpp ] -[ compile-fail ../no_std_iterator_fail.cpp ] ; test-suite "BOOST_NO_STD_ITERATOR_TRAITS" : [ run ../no_std_iter_traits_pass.cpp ] [ compile-fail ../no_std_iter_traits_fail.cpp ] ; +test-suite "BOOST_NO_STD_ITERATOR" : +[ run ../no_std_iterator_pass.cpp ] +[ compile-fail ../no_std_iterator_fail.cpp ] ; test-suite "BOOST_NO_STD_LOCALE" : [ run ../no_std_locale_pass.cpp ] [ compile-fail ../no_std_locale_fail.cpp ] ; @@ -547,9 +544,15 @@ test-suite "BOOST_NO_STD_WSTREAMBUF" : test-suite "BOOST_NO_STD_WSTRING" : [ run ../no_std_wstring_pass.cpp ] [ compile-fail ../no_std_wstring_fail.cpp ] ; +test-suite "BOOST_NO_STDC_NAMESPACE" : +[ run ../no_stdc_namespace_pass.cpp ] +[ compile-fail ../no_stdc_namespace_fail.cpp ] ; test-suite "BOOST_NO_SWPRINTF" : [ run ../no_swprintf_pass.cpp ] [ compile-fail ../no_swprintf_fail.cpp ] ; +test-suite "BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS" : +[ run ../no_tem_local_classes_pass.cpp ] +[ compile-fail ../no_tem_local_classes_fail.cpp ] ; test-suite "BOOST_NO_CXX11_TEMPLATE_ALIASES" : [ run ../no_template_aliases_pass.cpp ] [ compile-fail ../no_template_aliases_fail.cpp ] ; @@ -559,9 +562,6 @@ test-suite "BOOST_NO_TEMPLATED_IOSTREAMS" : test-suite "BOOST_NO_TEMPLATE_TEMPLATES" : [ run ../no_template_template_pass.cpp ] [ compile-fail ../no_template_template_fail.cpp ] ; -test-suite "BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS" : -[ run ../no_tem_local_classes_pass.cpp ] -[ compile-fail ../no_tem_local_classes_fail.cpp ] ; test-suite "BOOST_NO_TWO_PHASE_NAME_LOOKUP" : [ run ../no_two_phase_lookup_pass.cpp ] [ compile-fail ../no_two_phase_lookup_fail.cpp ] ; diff --git a/test/config_info.cpp b/test/config_info.cpp index 803a5250..1c96194c 100644 --- a/test/config_info.cpp +++ b/test/config_info.cpp @@ -1122,6 +1122,7 @@ void print_boost_macros() PRINT_MACRO(BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE); PRINT_MACRO(BOOST_NO_USING_TEMPLATE); PRINT_MACRO(BOOST_NO_VOID_RETURNS); + // END GENERATED BLOCK PRINT_MACRO(BOOST_INTEL); diff --git a/test/config_test.cpp b/test/config_test.cpp index 20b51680..5af88239 100644 --- a/test/config_test.cpp +++ b/test/config_test.cpp @@ -1,4 +1,4 @@ -// This file was automatically generated on Sat Oct 11 19:26:21 2014 +// This file was automatically generated on Mon Oct 13 13:09:12 2014 // by libs/config/tools/generate.cpp // Copyright John Maddock 2002-4. // Use, modification and distribution are subject to the @@ -202,16 +202,16 @@ namespace boost_no_cxx11_hdr_thread = empty_boost; #else namespace boost_no_cxx11_hdr_tuple = empty_boost; #endif -#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX -#include "boost_no_cxx11_hdr_typeindex.ipp" -#else -namespace boost_no_cxx11_hdr_typeindex = empty_boost; -#endif #ifndef BOOST_NO_CXX11_HDR_TYPE_TRAITS #include "boost_no_cxx11_hdr_type_traits.ipp" #else namespace boost_no_cxx11_hdr_type_traits = empty_boost; #endif +#ifndef BOOST_NO_CXX11_HDR_TYPEINDEX +#include "boost_no_cxx11_hdr_typeindex.ipp" +#else +namespace boost_no_cxx11_hdr_typeindex = empty_boost; +#endif #ifndef BOOST_NO_CXX11_HDR_UNORDERED_MAP #include "boost_no_cxx11_hdr_unordered_map.ipp" #else @@ -347,26 +347,26 @@ namespace boost_no_dependent_nested_derivations = empty_boost; #else namespace boost_no_dependent_types_in_template_value_parameters = empty_boost; #endif -#ifndef BOOST_NO_EXCEPTIONS -#include "boost_no_exceptions.ipp" -#else -namespace boost_no_exceptions = empty_boost; -#endif #ifndef BOOST_NO_EXCEPTION_STD_NAMESPACE #include "boost_no_excep_std.ipp" #else namespace boost_no_exception_std_namespace = empty_boost; #endif -#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS -#include "boost_no_explicit_cvt_ops.ipp" +#ifndef BOOST_NO_EXCEPTIONS +#include "boost_no_exceptions.ipp" #else -namespace boost_no_cxx11_explicit_conversion_operators = empty_boost; +namespace boost_no_exceptions = empty_boost; #endif #ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS #include "boost_no_exp_func_tem_arg.ipp" #else namespace boost_no_explicit_function_template_arguments = empty_boost; #endif +#ifndef BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS +#include "boost_no_explicit_cvt_ops.ipp" +#else +namespace boost_no_cxx11_explicit_conversion_operators = empty_boost; +#endif #ifndef BOOST_NO_CXX11_EXTERN_TEMPLATE #include "boost_no_extern_template.ipp" #else @@ -382,6 +382,11 @@ namespace boost_no_fenv_h = empty_boost; #else namespace boost_no_cxx11_fixed_length_variadic_template_expansion_packs = empty_boost; #endif +#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING +#include "boost_no_func_tmp_order.ipp" +#else +namespace boost_no_function_template_ordering = empty_boost; +#endif #ifndef BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS #include "boost_no_function_template_default_args.ipp" #else @@ -392,11 +397,6 @@ namespace boost_no_cxx11_function_template_default_args = empty_boost; #else namespace boost_no_function_type_specializations = empty_boost; #endif -#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING -#include "boost_no_func_tmp_order.ipp" -#else -namespace boost_no_function_template_ordering = empty_boost; -#endif #ifndef BOOST_NO_MS_INT64_NUMERIC_LIMITS #include "boost_no_i64_limits.ipp" #else @@ -462,16 +462,6 @@ namespace boost_no_long_long = empty_boost; #else namespace boost_no_member_function_specializations = empty_boost; #endif -#ifndef BOOST_NO_MEMBER_TEMPLATES -#include "boost_no_mem_templates.ipp" -#else -namespace boost_no_member_templates = empty_boost; -#endif -#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS -#include "boost_no_mem_templ_frnds.ipp" -#else -namespace boost_no_member_template_friends = empty_boost; -#endif #ifndef BOOST_NO_MEMBER_TEMPLATE_KEYWORD #include "boost_no_mem_tem_keyword.ipp" #else @@ -482,6 +472,16 @@ namespace boost_no_member_template_keyword = empty_boost; #else namespace boost_no_pointer_to_member_template_parameters = empty_boost; #endif +#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS +#include "boost_no_mem_templ_frnds.ipp" +#else +namespace boost_no_member_template_friends = empty_boost; +#endif +#ifndef BOOST_NO_MEMBER_TEMPLATES +#include "boost_no_mem_templates.ipp" +#else +namespace boost_no_member_templates = empty_boost; +#endif #ifndef BOOST_NO_NESTED_FRIENDSHIP #include "boost_no_nested_friendship.ipp" #else @@ -502,16 +502,16 @@ namespace boost_no_cxx11_nullptr = empty_boost; #else namespace boost_no_operators_in_namespace = empty_boost; #endif -#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION -#include "boost_no_partial_spec.ipp" -#else -namespace boost_no_template_partial_specialization = empty_boost; -#endif #ifndef BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS #include "boost_no_part_spec_def_args.ipp" #else namespace boost_no_partial_specialization_implicit_default_args = empty_boost; #endif +#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION +#include "boost_no_partial_spec.ipp" +#else +namespace boost_no_template_partial_specialization = empty_boost; +#endif #ifndef BOOST_NO_PRIVATE_IN_AGGREGATE #include "boost_no_priv_aggregate.ipp" #else @@ -572,11 +572,6 @@ namespace boost_no_stringstream = empty_boost; #else namespace boost_no_cxx11_static_assert = empty_boost; #endif -#ifndef BOOST_NO_STDC_NAMESPACE -#include "boost_no_stdc_namespace.ipp" -#else -namespace boost_no_stdc_namespace = empty_boost; -#endif #ifndef BOOST_NO_STD_ALLOCATOR #include "boost_no_std_allocator.ipp" #else @@ -587,16 +582,16 @@ namespace boost_no_std_allocator = empty_boost; #else namespace boost_no_std_distance = empty_boost; #endif -#ifndef BOOST_NO_STD_ITERATOR -#include "boost_no_std_iterator.ipp" -#else -namespace boost_no_std_iterator = empty_boost; -#endif #ifndef BOOST_NO_STD_ITERATOR_TRAITS #include "boost_no_std_iter_traits.ipp" #else namespace boost_no_std_iterator_traits = empty_boost; #endif +#ifndef BOOST_NO_STD_ITERATOR +#include "boost_no_std_iterator.ipp" +#else +namespace boost_no_std_iterator = empty_boost; +#endif #ifndef BOOST_NO_STD_LOCALE #include "boost_no_std_locale.ipp" #else @@ -637,11 +632,21 @@ namespace boost_no_std_wstreambuf = empty_boost; #else namespace boost_no_std_wstring = empty_boost; #endif +#ifndef BOOST_NO_STDC_NAMESPACE +#include "boost_no_stdc_namespace.ipp" +#else +namespace boost_no_stdc_namespace = empty_boost; +#endif #ifndef BOOST_NO_SWPRINTF #include "boost_no_swprintf.ipp" #else namespace boost_no_swprintf = empty_boost; #endif +#ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS +#include "boost_no_tem_local_classes.ipp" +#else +namespace boost_no_cxx11_local_class_template_parameters = empty_boost; +#endif #ifndef BOOST_NO_CXX11_TEMPLATE_ALIASES #include "boost_no_template_aliases.ipp" #else @@ -657,11 +662,6 @@ namespace boost_no_templated_iostreams = empty_boost; #else namespace boost_no_template_templates = empty_boost; #endif -#ifndef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS -#include "boost_no_tem_local_classes.ipp" -#else -namespace boost_no_cxx11_local_class_template_parameters = empty_boost; -#endif #ifndef BOOST_NO_TWO_PHASE_NAME_LOOKUP #include "boost_no_two_phase_lookup.ipp" #else @@ -813,11 +813,6 @@ namespace boost_has_nrvo = empty_boost; #else namespace boost_has_partial_std_allocator = empty_boost; #endif -#ifdef BOOST_HAS_PTHREADS -#include "boost_has_pthreads.ipp" -#else -namespace boost_has_pthreads = empty_boost; -#endif #ifdef BOOST_HAS_PTHREAD_DELAY_NP #include "boost_has_pthread_delay_np.ipp" #else @@ -833,6 +828,11 @@ namespace boost_has_pthread_mutexattr_settype = empty_boost; #else namespace boost_has_pthread_yield = empty_boost; #endif +#ifdef BOOST_HAS_PTHREADS +#include "boost_has_pthreads.ipp" +#else +namespace boost_has_pthreads = empty_boost; +#endif #ifdef BOOST_HAS_RVALUE_REFS #include "boost_has_rvalue_refs.ipp" #else @@ -1076,11 +1076,6 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_PARTIAL_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_has_pthreads::test()) - { - std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_has_pthread_delay_np::test()) { std::cerr << "Failed test for BOOST_HAS_PTHREAD_DELAY_NP at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1096,6 +1091,11 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_HAS_PTHREAD_YIELD at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_has_pthreads::test()) + { + std::cerr << "Failed test for BOOST_HAS_PTHREADS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_has_rvalue_refs::test()) { std::cerr << "Failed test for BOOST_HAS_RVALUE_REFS at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1426,16 +1426,16 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TUPLE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_hdr_typeindex::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_cxx11_hdr_type_traits::test()) { std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPE_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_cxx11_hdr_typeindex::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_HDR_TYPEINDEX at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_cxx11_hdr_unordered_map::test()) { std::cerr << "Failed test for BOOST_NO_CXX11_HDR_UNORDERED_MAP at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1571,19 +1571,14 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_exceptions::test()) - { - std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_exception_std_namespace::test()) { std::cerr << "Failed test for BOOST_NO_EXCEPTION_STD_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_explicit_conversion_operators::test()) + if(0 != boost_no_exceptions::test()) { - std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl; + std::cerr << "Failed test for BOOST_NO_EXCEPTIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } if(0 != boost_no_explicit_function_template_arguments::test()) @@ -1591,6 +1586,11 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_cxx11_explicit_conversion_operators::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_cxx11_extern_template::test()) { std::cerr << "Failed test for BOOST_NO_CXX11_EXTERN_TEMPLATE at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1606,6 +1606,11 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_FIXED_LENGTH_VARIADIC_TEMPLATE_EXPANSION_PACKS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_function_template_ordering::test()) + { + std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_cxx11_function_template_default_args::test()) { std::cerr << "Failed test for BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1616,11 +1621,6 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_function_template_ordering::test()) - { - std::cerr << "Failed test for BOOST_NO_FUNCTION_TEMPLATE_ORDERING at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_ms_int64_numeric_limits::test()) { std::cerr << "Failed test for BOOST_NO_MS_INT64_NUMERIC_LIMITS at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1686,16 +1686,6 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_member_templates::test()) - { - std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } - if(0 != boost_no_member_template_friends::test()) - { - std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_member_template_keyword::test()) { std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_KEYWORD at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1706,6 +1696,16 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_POINTER_TO_MEMBER_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_member_template_friends::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATE_FRIENDS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } + if(0 != boost_no_member_templates::test()) + { + std::cerr << "Failed test for BOOST_NO_MEMBER_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_nested_friendship::test()) { std::cerr << "Failed test for BOOST_NO_NESTED_FRIENDSHIP at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1726,16 +1726,16 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_OPERATORS_IN_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_template_partial_specialization::test()) - { - std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_partial_specialization_implicit_default_args::test()) { std::cerr << "Failed test for BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_template_partial_specialization::test()) + { + std::cerr << "Failed test for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_private_in_aggregate::test()) { std::cerr << "Failed test for BOOST_NO_PRIVATE_IN_AGGREGATE at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1796,11 +1796,6 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_CXX11_STATIC_ASSERT at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_stdc_namespace::test()) - { - std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_std_allocator::test()) { std::cerr << "Failed test for BOOST_NO_STD_ALLOCATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1811,16 +1806,16 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_STD_DISTANCE at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_std_iterator::test()) - { - std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_std_iterator_traits::test()) { std::cerr << "Failed test for BOOST_NO_STD_ITERATOR_TRAITS at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_std_iterator::test()) + { + std::cerr << "Failed test for BOOST_NO_STD_ITERATOR at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_std_locale::test()) { std::cerr << "Failed test for BOOST_NO_STD_LOCALE at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1861,11 +1856,21 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_STD_WSTRING at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_stdc_namespace::test()) + { + std::cerr << "Failed test for BOOST_NO_STDC_NAMESPACE at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_swprintf::test()) { std::cerr << "Failed test for BOOST_NO_SWPRINTF at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } + if(0 != boost_no_cxx11_local_class_template_parameters::test()) + { + std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; + ++error_count; + } if(0 != boost_no_cxx11_template_aliases::test()) { std::cerr << "Failed test for BOOST_NO_CXX11_TEMPLATE_ALIASES at: " << __FILE__ << ":" << __LINE__ << std::endl; @@ -1881,11 +1886,6 @@ int main( int, char *[] ) std::cerr << "Failed test for BOOST_NO_TEMPLATE_TEMPLATES at: " << __FILE__ << ":" << __LINE__ << std::endl; ++error_count; } - if(0 != boost_no_cxx11_local_class_template_parameters::test()) - { - std::cerr << "Failed test for BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS at: " << __FILE__ << ":" << __LINE__ << std::endl; - ++error_count; - } if(0 != boost_no_two_phase_name_lookup::test()) { std::cerr << "Failed test for BOOST_NO_TWO_PHASE_NAME_LOOKUP at: " << __FILE__ << ":" << __LINE__ << std::endl; diff --git a/tools/generate.cpp b/tools/generate.cpp index 1313b42e..8a8e7708 100644 --- a/tools/generate.cpp +++ b/tools/generate.cpp @@ -324,18 +324,26 @@ int cpp_main(int argc, char* argv[]) } std::cout << "Info: Boost.Config test path set as: " << config_path.string() << std::endl; - // enumerate *.ipp files: + // enumerate *.ipp files and store them in a map for now: boost::regex ipp_mask("boost_(?:(has)|no).*\\.ipp"); boost::smatch ipp_match; fs::directory_iterator i(config_path), j; + std::map files_to_process; while(i != j) { if(boost::regex_match(i->path().leaf().string(), ipp_match, ipp_mask)) { - process_ipp_file(*i, ipp_match[1].matched); + files_to_process[*i] = ipp_match[1].matched; } ++i; } + // Enumerate the files and process them, by defering this until now + // the results are always alphabetized which reduces churn in the + // generated files. + for(std::map::const_iterator pos = files_to_process.begin(); pos != files_to_process.end(); ++pos) + { + process_ipp_file(pos->first, pos->second); + } write_config_test(); write_jamfile_v2(); write_config_info(); From 2a51a64b8474250edbf5983d3ee40bfbb3475dfc Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Tue, 14 Oct 2014 12:46:21 +0900 Subject: [PATCH 20/20] Fix error on __has_include with older clang (< 3.1) Signed-off-by: Kohei Takahashi --- include/boost/config/stdlib/libstdcpp3.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/config/stdlib/libstdcpp3.hpp b/include/boost/config/stdlib/libstdcpp3.hpp index f4a89862..b26d1ff9 100644 --- a/include/boost/config/stdlib/libstdcpp3.hpp +++ b/include/boost/config/stdlib/libstdcpp3.hpp @@ -127,15 +127,15 @@ # define BOOST_LIBSTDCXX_VERSION 40900 #elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40800 -#elif __has_include(chrono) +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40700 -#elif __has_include(typeindex) +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40600 -#elif __has_include(future) +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40500 -#elif __has_include(ratio) +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40400 -#elif __has_include(array) +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 40300 #endif //