diff options
Diffstat (limited to 'boost/poly_collection/detail/functional.hpp')
-rw-r--r-- | boost/poly_collection/detail/functional.hpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/boost/poly_collection/detail/functional.hpp b/boost/poly_collection/detail/functional.hpp index 2d1f8944b8..9fcf05c2ee 100644 --- a/boost/poly_collection/detail/functional.hpp +++ b/boost/poly_collection/detail/functional.hpp @@ -1,4 +1,4 @@ -/* Copyright 2016-2017 Joaquin M Lopez Munoz. +/* Copyright 2016-2018 Joaquin M Lopez Munoz. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) @@ -16,7 +16,6 @@ #include <boost/config.hpp> #include <boost/detail/workaround.hpp> #include <boost/poly_collection/detail/integer_sequence.hpp> -#include <boost/poly_collection/detail/workaround_dr1467.hpp> #include <tuple> #include <utility> @@ -40,8 +39,6 @@ struct name \ #define BOOST_POLY_COLLECTION_DEFINE_OVERLOAD_SET(name,f) \ struct name \ { \ - BOOST_POLY_COLLECTION_WORKAROUND_DR1467(name) \ - \ template<typename... Args> \ auto operator()(Args&&... args)const-> \ decltype(f(std::forward<Args>(args)...)) \ @@ -184,8 +181,6 @@ deref_1st_to_class<F> deref_1st_to(const F& f) struct transparent_equal_to { - BOOST_POLY_COLLECTION_WORKAROUND_DR1467(transparent_equal_to) - template<typename T,typename U> auto operator()(T&& x,U&& y)const noexcept(noexcept(std::forward<T>(x)==std::forward<U>(y))) |