changeset 1767:b268756c2cb9

fix msvc 2013 build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2015 09:34:18 +0100
parents d178fab186dd
children 70f544f9c38f
files Core/Toolbox.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
     }