From 85adf4c74e6d5d9dcd07b9b6502288f0cdaec7f8 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 3 Dec 2014 15:07:33 -0800 Subject: [PATCH] For some reason, these routines were only compiled in for C++11 and less. Make them available all the time. --- include/boost/algorithm/cxx14/is_permutation.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/boost/algorithm/cxx14/is_permutation.hpp b/include/boost/algorithm/cxx14/is_permutation.hpp index a2112df..9346881 100644 --- a/include/boost/algorithm/cxx14/is_permutation.hpp +++ b/include/boost/algorithm/cxx14/is_permutation.hpp @@ -22,7 +22,6 @@ namespace boost { namespace algorithm { -#if __cplusplus <= 201103L /// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, /// ForwardIterator2 first2, ForwardIterator2 last2 ) /// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2 @@ -79,7 +78,6 @@ bool is_permutation ( ForwardIterator1 first1, ForwardIterator1 last1, typename std::iterator_traits::iterator_category (), typename std::iterator_traits::iterator_category ()); } -#endif }}