# HG changeset patch # User Sebastien Jodogne # Date 1468576691 -7200 # Node ID 1d7a640c1ddadfec105acbb04ee7b790e8885b71 # Parent f8d4543e3fef9e63988146788aa9805c92515a7d fix build issues with Visual Studio 2015 diff -r f8d4543e3fef -r 1d7a640c1dda Core/Logging.h --- 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; + } }; } }