Index: library_status.cpp =================================================================== --- library_status.cpp (revision 74597) +++ library_status.cpp (working copy) @@ -131,7 +131,7 @@ if(fs::is_directory(*itr)){ std::pair result = node.m_subcolumns.insert( - std::make_pair(itr->path().native(), col_node()) + std::make_pair(itr->path().string(), col_node()) ); build_node_tree(*itr, result.first->second); } @@ -630,7 +630,7 @@ if(! fs::is_directory(*itr)) continue; - string test_name = itr->path().native(); + string test_name = itr->path().string(); // if the file name contains ".test" string::size_type s = test_name.find( ".test" ); if(string::npos != s) @@ -758,7 +758,7 @@ } string library_name; for(;;){ - library_name.append((*++e_itr).native()); + library_name.append((*++e_itr).string()); if(1 == --count) break; library_name.append("/"); @@ -896,7 +896,7 @@ if ( argc == 3 ) { fs::path links_path( argv[2] ); - links_name = links_path.native(); + links_name = links_path.string(); links_file.open( links_path ); if ( !links_file ) {