Index: boost/wave/util/cpp_include_paths.hpp =================================================================== --- boost/wave/util/cpp_include_paths.hpp (revision 69681) +++ boost/wave/util/cpp_include_paths.hpp (working copy) @@ -182,7 +182,7 @@ public: bool has_pragma_once(std::string const &filename) { - using namespace boost::multi_index; + using boost::multi_index::get; return get(pragma_once_files).find(filename) != pragma_once_files.end(); } bool add_pragma_once_header(std::string const &filename, @@ -198,7 +198,7 @@ range_type r = pragma_once_files.get().equal_range(guard_name); if (r.first != r.second) { - using namespace boost::multi_index; + using boost::multi_index::get; get(pragma_once_files).erase(r.first, r.second); return true; }