From 3f42a56bae7030b190c97e22ec75a8b60f0b28e9 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 26 May 2016 09:23:01 +0100 Subject: [PATCH] Remove old deprecated warning. --- doc/changes.qbk | 1 + include/boost/unordered/detail/table.hpp | 12 ------------ 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/doc/changes.qbk b/doc/changes.qbk index a884b2bc..fdaf3f89 100644 --- a/doc/changes.qbk +++ b/doc/changes.qbk @@ -273,5 +273,6 @@ C++11 support has resulted in some breaking changes: * Remove use of deprecated `boost::iterator`. * Remove `BOOST_NO_STD_DISTANCE` workaround. +* Remove `BOOST_UNORDERED_DEPRECATED_EQUALITY` warning. [endsect] diff --git a/include/boost/unordered/detail/table.hpp b/include/boost/unordered/detail/table.hpp index b356ca22..f0b9a8b0 100644 --- a/include/boost/unordered/detail/table.hpp +++ b/include/boost/unordered/detail/table.hpp @@ -23,18 +23,6 @@ #pragma warning(disable:4127) // conditional expression is constant #endif -#if defined(BOOST_UNORDERED_DEPRECATED_EQUALITY) - -#if defined(__EDG__) -#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__) -#pragma message("Warning: BOOST_UNORDERED_DEPRECATED_EQUALITY is no longer supported.") -#elif defined(__GNUC__) || defined(__HP_aCC) || \ - defined(__SUNPRO_CC) || defined(__IBMCPP__) -#warning "BOOST_UNORDERED_DEPRECATED_EQUALITY is no longer supported." -#endif - -#endif - namespace boost { namespace unordered { namespace detail { ////////////////////////////////////////////////////////////////////////////