diff Core/Logging.h @ 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 bcc575732aef
children ddc75c6c712d
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;
+      }
     };
   }
 }