From 8cf64cc167db391d6e46b6863a85925ff8021f27 Mon Sep 17 00:00:00 2001 From: Date: Tue, 7 Apr 2009 09:03:16 +0000 Subject: [PATCH] Use struct instead of class for forward declaration of CrashReason as we define it as struct. git-svn-id: https://google-glog.googlecode.com/svn/trunk@44 eb4d4688-79bd-11dd-afb4-1d65580434c0 --- src/glog/logging.h.in | 2 +- src/windows/glog/logging.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/glog/logging.h.in b/src/glog/logging.h.in index 463dc37..8e8af78 100644 --- a/src/glog/logging.h.in +++ b/src/glog/logging.h.in @@ -840,7 +840,7 @@ namespace glog_internal_namespace_ { template struct CompileAssert { }; -class CrashReason; +struct CrashReason; } // namespace glog_internal_namespace_ #define GOOGLE_GLOG_COMPILE_ASSERT(expr, msg) \ diff --git a/src/windows/glog/logging.h b/src/windows/glog/logging.h index 26ed501..76017e2 100755 --- a/src/windows/glog/logging.h +++ b/src/windows/glog/logging.h @@ -844,7 +844,7 @@ namespace glog_internal_namespace_ { template struct CompileAssert { }; -class CrashReason; +struct CrashReason; } // namespace glog_internal_namespace_ #define GOOGLE_GLOG_COMPILE_ASSERT(expr, msg) \ -- 2.7.4