changeset 2073:1d7a640c1dda

fix build issues with Visual Studio 2015
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 Jul 2016 11:58:11 +0200
parents f8d4543e3fef
children 4a151d26c98a
files Core/Logging.h
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Core/Logging.h	Thu Jul 14 14:34:29 2016 +0200
+++ b/Core/Logging.h	Fri Jul 15 11:58:11 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;
+      }
     };
   }
 }