We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Please fix this
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: