diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-20 22:56:30 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-20 22:56:30 +0000 |
commit | 9f58d8bb68966e20fc2809e221d925b895ca762e (patch) | |
tree | aa6885bd03e9c295195779f62d562e9193995df7 /base | |
parent | 6a6e657234868ad4044b03bdeb9c6f7e872b5ee6 (diff) | |
download | chromium_src-9f58d8bb68966e20fc2809e221d925b895ca762e.zip chromium_src-9f58d8bb68966e20fc2809e221d925b895ca762e.tar.gz chromium_src-9f58d8bb68966e20fc2809e221d925b895ca762e.tar.bz2 |
Turn on -Wall -Werror, fixing a few files while I'm here and *temporarily* disabling some other warnings that take more effort to fix.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1123 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/histogram.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/histogram.h b/base/histogram.h index 140bdd2..63d734b 100644 --- a/base/histogram.h +++ b/base/histogram.h @@ -350,7 +350,7 @@ class LinearHistogram : public Histogram { public: struct DescriptionPair { Sample sample; - char* description; // Null means end of a list of pairs. + const char* description; // Null means end of a list of pairs. }; LinearHistogram(const wchar_t* name, Sample minimum, Sample maximum, size_t bucket_count); |