Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85802 - trunk/boost/config/compiler
From: bdawes_at_[hidden]
Date: 2013-09-20 10:39:56


Author: bemandawes
Date: 2013-09-20 10:39:56 EDT (Fri, 20 Sep 2013)
New Revision: 85802
URL: http://svn.boost.org/trac/boost/changeset/85802

Log:
Variadic templates are supposed to be supported by VC++ 2013 but VC++ 2013 RC variadic support is causing boost regression test failures for signals2 and several of its dependencies, so continue to define BOOST_NO_CXX11_VARIADIC_TEMPLATES. Also, use _MSC_FULL_VER < 180020827 as more conservative to distinguish the RC release from earlier releases.

Text files modified:
   trunk/boost/config/compiler/visualc.hpp | 10 +++++++---
   1 files changed, 7 insertions(+), 3 deletions(-)

Modified: trunk/boost/config/compiler/visualc.hpp
==============================================================================
--- trunk/boost/config/compiler/visualc.hpp Fri Sep 20 08:10:45 2013 (r85801)
+++ trunk/boost/config/compiler/visualc.hpp 2013-09-20 10:39:56 EDT (Fri, 20 Sep 2013) (r85802)
@@ -43,7 +43,7 @@
 # error "Compiler not supported or configured - please reconfigure"
 #endif
 
-#if _MSC_VER < 1800
+#if _MSC_FULL_VER < 180020827
 # define BOOST_NO_FENV_H
 #endif
 
@@ -170,7 +170,7 @@
 
 // C++11 features supported by VC++ 12 (aka 2013).
 //
-#if _MSC_VER < 1800
+#if _MSC_FULL_VER < 180020827
 # define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
 # define BOOST_NO_CXX11_DELETED_FUNCTIONS
 # define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
@@ -179,9 +179,13 @@
 # define BOOST_NO_CXX11_TEMPLATE_ALIASES
 # define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
 # define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
-# define BOOST_NO_CXX11_VARIADIC_TEMPLATES
 #endif
 
+// variadic templates are supposed to be supported by VC++ 12
+// but VC++ 12 RC variadic support is causing boost regression
+// test failures for signals2 and several of its dependencies.
+#define BOOST_NO_CXX11_VARIADIC_TEMPLATES
+
 // C++11 features not supported by any versions
 #define BOOST_NO_CXX11_CHAR16_T
 #define BOOST_NO_CXX11_CHAR32_T


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