Ticket #5953: library_status.patch

File library_status.patch, 1.5 KB (added by Loïc Joly <loic.actarus.joly@…>, 11 years ago)

Patch

  • library_status.cpp

     
    131131            if(fs::is_directory(*itr)){
    132132                std::pair<col_node::subcolumns_t::iterator, bool> result
    133133                    = node.m_subcolumns.insert(
    134                         std::make_pair(itr->path().native(), col_node())
     134                        std::make_pair(itr->path().string(), col_node())
    135135                    );
    136136                build_node_tree(*itr, result.first->second);
    137137            }
     
    630630            if(! fs::is_directory(*itr))
    631631                continue;
    632632           
    633             string test_name = itr->path().native();
     633            string test_name = itr->path().string();
    634634            // if the file name contains ".test"
    635635            string::size_type s = test_name.find( ".test" );
    636636            if(string::npos != s)
     
    758758        }
    759759        string library_name;
    760760        for(;;){
    761             library_name.append((*++e_itr).native());
     761            library_name.append((*++e_itr).string());
    762762            if(1 == --count)
    763763                break;
    764764            library_name.append("/");
     
    896896    if ( argc == 3 )
    897897    {
    898898        fs::path links_path( argv[2] );
    899         links_name = links_path.native();
     899        links_name = links_path.string();
    900900        links_file.open( links_path );
    901901        if ( !links_file )
    902902        {