Merge pull request #254 from DariuszOstolski/issue253
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>
Fri, 20 Oct 2017 06:48:21 +0000 (15:48 +0900)
committerGitHub <noreply@github.com>
Fri, 20 Oct 2017 06:48:21 +0000 (15:48 +0900)
#253: Use MS preprocessor idiom to disable warning

src/glog/logging.h.in

index 2d834ec..bf6d754 100644 (file)
@@ -1148,11 +1148,12 @@ public:
   // http://msdn.microsoft.com/en-us/library/3tdb471s(VS.80).aspx
   // Let's just ignore the warning.
 #ifdef _MSC_VER
+# pragma warning(push)
 # pragma warning(disable: 4275)
 #endif
   class GOOGLE_GLOG_DLL_DECL LogStream : public std::ostream {
 #ifdef _MSC_VER
-# pragma warning(default: 4275)
+# pragma warning(pop)
 #endif
   public:
     LogStream(char *buf, int len, int ctr)