Open BenFrantzDale opened 3 years ago
See https://svn.boost.org/trac10/ticket/11202 which seems to be abandoned.
In boost/range/algorithm/sort.hpp (https://github.com/boostorg/range/blob/develop/include/boost/range/algorithm/sort.hpp#L65) there's
boost/range/algorithm/sort.hpp
} // namespace range using range::sort; } // namespace boost
which pollutes the ::boost namespace with sort. But ::boost::sort is a namespace used here: https://github.com/boostorg/sort/blob/develop/include/boost/sort/heap_sort/heap_sort.hpp#L25
::boost
sort
::boost::sort
This means I can't use both boost::sort and boost::range::sort.
boost::sort
boost::range::sort
This appears to violate https://svn.boost.org/trac10/wiki/Guidelines/MaintenanceGuidelines#Avoidtheinclusionofsymbolsattheboostorboost::detailnamespace
Please fix this
See https://svn.boost.org/trac10/ticket/11202 which seems to be abandoned.
In
boost/range/algorithm/sort.hpp
(https://github.com/boostorg/range/blob/develop/include/boost/range/algorithm/sort.hpp#L65) there'swhich pollutes the
::boost
namespace withsort
. But::boost::sort
is a namespace used here: https://github.com/boostorg/sort/blob/develop/include/boost/sort/heap_sort/heap_sort.hpp#L25This means I can't use both
boost::sort
andboost::range::sort
.This appears to violate https://svn.boost.org/trac10/wiki/Guidelines/MaintenanceGuidelines#Avoidtheinclusionofsymbolsattheboostorboost::detailnamespace