boostorg / graph

Boost.org graph module
http://boost.org/libs/graph
325 stars 208 forks source link

Move an #include outside of the boost namespace declaration. #355

Closed vslashg closed 12 months ago

vslashg commented 12 months ago

iteration_macros.hpp itself includes <utility>, so this inclusion ends up effectively doing

namespace boost {
#include <utility>
}

which is disallowed per [using.headers].

jeremy-murphy commented 12 months ago

Thanks! It's easy to merge straightforward fixes like this!