From 70c16383b75d6b038e8fc51c42cf8d8cb98c28a8 Mon Sep 17 00:00:00 2001 From: Benjamin Worpitz Date: Thu, 30 Apr 2015 09:02:30 +0200 Subject: [PATCH] Remove definition of BOOST_FIBERS_USE_VARIADIC_FIBER Since the usage of variadic templates is now enabled by default and not emulated, the definition of the `BOOST_FIBERS_USE_VARIADIC_FIBER` macro can be removed. --- include/boost/fiber/detail/config.hpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/boost/fiber/detail/config.hpp b/include/boost/fiber/detail/config.hpp index a8ed0e55..1b595676 100644 --- a/include/boost/fiber/detail/config.hpp +++ b/include/boost/fiber/detail/config.hpp @@ -42,14 +42,4 @@ # define BOOST_FIBERS_SEGMENTS 10 #endif -#if ! defined(BOOST_NO_SFINAE_EXPR) && \ - ! defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && \ - ! defined(BOOST_NO_CXX11_DECLTYPE) && \ - ! defined(BOOST_NO_CXX11_DECLTYPE_N3276) && \ - ! defined(BOOST_NO_CXX11_AUTO) && \ - ! defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && \ - ! defined(BOOST_NO_CXX11_HDR_TUPLE) -# define BOOST_FIBERS_USE_VARIADIC_FIBER -#endif - #endif // BOOST_FIBERS_DETAIL_CONFIG_H