Fix for Boost.Filesystem v3

This commit is contained in:
John Wiegley 2011-02-28 16:26:45 -05:00
parent 8388baafd3
commit 49a90ef595

View file

@ -51,7 +51,7 @@ string error_context()
string file_context(const path& file, const std::size_t line)
{
std::ostringstream buf;
buf << "\"" << file << "\", line " << line << ": ";
buf << file << ", line " << line << ": ";
return buf.str();
}