Mercurial > hg > orthanc-dicomweb
changeset 156:1adc7c4d67e9 OrthancDicomWeb-0.3
hot fix for Visual Studio 2015
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 15 Jul 2016 12:01:19 +0200 |
parents | b6f0743a917f |
children | ad671caa2dcf a87a69e6648b |
files | Orthanc/Core/Logging.h |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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; + } }; } }