comparison 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
comparison
equal deleted inserted replaced
2072:f8d4543e3fef 2073:1d7a640c1dda
64 64
65 std::ostream& operator<< (const std::string& message) 65 std::ostream& operator<< (const std::string& message)
66 { 66 {
67 return *this; 67 return *this;
68 } 68 }
69
70 // This overload fixes build problems with Visual Studio 2015
71 std::ostream& operator<< (const char* message)
72 {
73 return *this;
74 }
69 }; 75 };
70 } 76 }
71 } 77 }
72 78
73 79