Ticket #3863: fs_path_extract_operator.patch

File fs_path_extract_operator.patch, 416 bytes (added by dgoncharov@…, 13 years ago)

patch

  • boost/filesystem/path.hpp

     
    596596      typename Path::string_type::traits_type >& is, Path & ph )
    597597    {
    598598      typename Path::string_type str;
    599       is >> str;
     599      std::getline(is, str);
    600600      ph = str;
    601601      return is;
    602602    }