Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 261400
Collapse All | Expand All

(-)boost-1.39.0/tools/wave/cpp.cpp (-2 / +2 lines)
Lines 799-805 Link Here
799
799
800
    // add include directories to the system include search paths
800
    // add include directories to the system include search paths
801
        if (vm.count("sysinclude")) {
801
        if (vm.count("sysinclude")) {
802
        vector<std::string> syspaths = vm["sysinclude"].as<vector<string> >();
802
        vector<std::string> syspaths = vm["sysinclude"].as<vector<std::string> >();
803
803
804
            vector<std::string>::const_iterator end = syspaths.end();
804
            vector<std::string>::const_iterator end = syspaths.end();
805
            for (vector<std::string>::const_iterator cit = syspaths.begin(); 
805
            for (vector<std::string>::const_iterator cit = syspaths.begin(); 
Lines 836-842 Link Here
836
    
836
    
837
    // add additional defined macros 
837
    // add additional defined macros 
838
        if (vm.count("define")) {
838
        if (vm.count("define")) {
839
            vector<std::string> const &macros = vm["define"].as<vector<string> >();
839
            vector<std::string> const &macros = vm["define"].as<vector<std::string> >();
840
            vector<std::string>::const_iterator end = macros.end();
840
            vector<std::string>::const_iterator end = macros.end();
841
            for (vector<std::string>::const_iterator cit = macros.begin(); 
841
            for (vector<std::string>::const_iterator cit = macros.begin(); 
842
                 cit != end; ++cit)
842
                 cit != end; ++cit)

Return to bug 261400