From: Date: Tue, 7 Apr 2009 09:03:16 +0000 (+0000) Subject: Use struct instead of class for forward declaration of CrashReason as we define it... X-Git-Tag: accepted/tizen/5.0/unified/20181102.024921~192 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8cf64cc167db391d6e46b6863a85925ff8021f27;p=platform%2Fupstream%2Fglog.git 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 --- 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) \