diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 00:46:33 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 00:46:33 +0000 |
commit | d643172a8573e7e75f325bec2125de8071bfd0fc (patch) | |
tree | 16d43bab4652624b87e1e7acfbecb63310a6e736 /base/base_paths.h | |
parent | f5e7e8e162433ab6e8223c8b3da4feb64abddc33 (diff) | |
download | chromium_src-d643172a8573e7e75f325bec2125de8071bfd0fc.zip chromium_src-d643172a8573e7e75f325bec2125de8071bfd0fc.tar.gz chromium_src-d643172a8573e7e75f325bec2125de8071bfd0fc.tar.bz2 |
Reduce number of unnamed-type-template-args violations (mostly when passing values to DCHECK(), ASSERT_EQ(), etc.), generally by naming previously-anonymous enums. We've decided not to eliminate the warning entirely because doing so is only possible with tons of ugly static_cast<>()s in Mac code.
BUG=92247
TEST=Compiles
Review URL: http://codereview.chromium.org/7605019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99086 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_paths.h')
-rw-r--r-- | base/base_paths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/base_paths.h b/base/base_paths.h index f724c3f..708d8e8 100644 --- a/base/base_paths.h +++ b/base/base_paths.h @@ -19,7 +19,7 @@ namespace base { -enum { +enum BasePathKey { PATH_START = 0, DIR_CURRENT, // current directory |