Index: boost/filesystem/path.hpp =================================================================== --- boost/filesystem/path.hpp (revision 59425) +++ boost/filesystem/path.hpp (working copy) @@ -596,7 +596,7 @@ typename Path::string_type::traits_type >& is, Path & ph ) { typename Path::string_type str; - is >> str; + std::getline(is, str); ph = str; return is; }