# HG changeset patch # User Sebastien Jodogne # Date 1447058058 -3600 # Node ID b268756c2cb9a26355e0063856414186277d19b6 # Parent d178fab186dd32b1a63dff5f1324eb7a2265b6ee fix msvc 2013 build diff -r d178fab186dd -r b268756c2cb9 Core/Toolbox.cpp --- a/Core/Toolbox.cpp Fri Oct 30 08:16:53 2015 +0100 +++ b/Core/Toolbox.cpp Mon Nov 09 09:34:18 2015 +0100 @@ -210,7 +210,7 @@ { if (!boost::filesystem::is_regular_file(path)) { - LOG(ERROR) << "The path does not point to a regular file: " << path; + LOG(ERROR) << std::string("The path does not point to a regular file: ") << path; throw OrthancException(ErrorCode_RegularFileExpected); }