diff options
author | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 13:02:03 +0000 |
---|---|---|
committer | maruel@google.com <maruel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 13:02:03 +0000 |
commit | c88873923d37e1d77d985f8fe614aaf835dcfa82 (patch) | |
tree | ef1c4f68daac23e83b2bc149c9b5802781bf3815 /base/logging.h | |
parent | f9fb868acd8f9977254f33fc50565a9b7bdb3295 (diff) | |
download | chromium_src-c88873923d37e1d77d985f8fe614aaf835dcfa82.zip chromium_src-c88873923d37e1d77d985f8fe614aaf835dcfa82.tar.gz chromium_src-c88873923d37e1d77d985f8fe614aaf835dcfa82.tar.bz2 |
Fix most issues when building base as a x64 target.
BUG=1282556
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/logging.h')
-rw-r--r-- | base/logging.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/logging.h b/base/logging.h index 615b1e0..40c176f 100644 --- a/base/logging.h +++ b/base/logging.h @@ -480,7 +480,8 @@ class LogMessage { LogSeverity severity_; std::ostringstream stream_; - int message_start_; // offset of the start of the message (past prefix info). + size_t message_start_; // Offset of the start of the message (past prefix + // info). DISALLOW_EVIL_CONSTRUCTORS(LogMessage); }; |