# HG changeset patch # User Sebastien Jodogne # Date 1468576879 -7200 # Node ID 1adc7c4d67e90ad4a7e0b4d968f05b836aeb1fa7 # Parent b6f0743a917faa06e53e0b34d663a74b2ef9d4ab hot fix for Visual Studio 2015 diff -r b6f0743a917f -r 1adc7c4d67e9 Orthanc/Core/Logging.h --- a/Orthanc/Core/Logging.h Tue Jun 28 10:54:46 2016 +0200 +++ b/Orthanc/Core/Logging.h Fri Jul 15 12:01:19 2016 +0200 @@ -66,6 +66,12 @@ { return *this; } + + // This overload fixes build problems with Visual Studio 2015 + std::ostream& operator<< (const char* message) + { + return *this; + } }; } }