[range] corrected undesirable namespace nesting in algorithm/search_n.hpp; fixes #6103

[SVN r82071]
This commit is contained in:
Nathan Ridge
2012-12-18 09:25:08 +00:00
parent f49e347772
commit b7f443e583

4
include/boost/range/algorithm/search_n.hpp Executable file → Normal file
View File

@ -20,8 +20,6 @@
namespace boost namespace boost
{ {
namespace range
{
namespace range_detail namespace range_detail
{ {
@ -235,6 +233,8 @@ namespace range_detail
} }
} // namespace range_detail } // namespace range_detail
namespace range {
/// \brief template function search /// \brief template function search
/// ///
/// range-based version of the search std algorithm /// range-based version of the search std algorithm