From caa0b7cdf68dbc8bda90340f9f6bb9bbcd891446 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Wed, 27 May 2009 18:32:22 +0000 Subject: [PATCH] Fix a change accidentally included in the last commit. [SVN r53317] --- include/boost/unordered/unordered_set.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/unordered_set.hpp b/include/boost/unordered/unordered_set.hpp index ad0bc36e..07ed746b 100644 --- a/include/boost/unordered/unordered_set.hpp +++ b/include/boost/unordered/unordered_set.hpp @@ -433,7 +433,7 @@ namespace boost base.rehash(n); } -#if 1 || BOOST_WORKAROUND(BOOST_MSVC, < 1300) +#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) friend bool operator==(unordered_set const&, unordered_set const&); friend bool operator!=(unordered_set const&, unordered_set const&); #elif !BOOST_WORKAROUND(__BORLANDC__, < 0x0582) @@ -856,7 +856,7 @@ namespace boost base.rehash(n); } -#if 1 || BOOST_WORKAROUND(BOOST_MSVC, < 1300) +#if BOOST_WORKAROUND(BOOST_MSVC, < 1300) friend bool operator==(unordered_multiset const&, unordered_multiset const&); friend bool operator!=(unordered_multiset const&, unordered_multiset const&); #elif !BOOST_WORKAROUND(__BORLANDC__, < 0x0582)