Ticket #5280: cpp_include_paths.patch

File cpp_include_paths.patch, 908 bytes (added by bolero.murakami+cpp@…, 12 years ago)
  • boost/wave/util/cpp_include_paths.hpp

     
    182182public:
    183183    bool has_pragma_once(std::string const &filename)
    184184    {
    185         using namespace boost::multi_index;
     185        using boost::multi_index::get;
    186186        return get<from>(pragma_once_files).find(filename) != pragma_once_files.end();
    187187    }
    188188    bool add_pragma_once_header(std::string const &filename,
     
    198198       
    199199        range_type r = pragma_once_files.get<to>().equal_range(guard_name);
    200200        if (r.first != r.second) {
    201             using namespace boost::multi_index;
     201            using boost::multi_index::get;
    202202            get<to>(pragma_once_files).erase(r.first, r.second);
    203203            return true;
    204204        }