From 2cdf8cdaf915c8cd1d35e3840465e9ed901bb899 Mon Sep 17 00:00:00 2001 From: "darin@chromium.org" Date: Fri, 29 Apr 2011 18:08:21 +0000 Subject: There's no need to export the key_iterator class, and exporting it breaks VS2005 compilation. R=rvargas BUG=80925 TEST=none Review URL: http://codereview.chromium.org/6880306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83548 0039d316-1c4b-4281-b951-d872f2087c98 --- base/values.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/values.h b/base/values.h index e4949b1..49ac219 100644 --- a/base/values.h +++ b/base/values.h @@ -314,7 +314,7 @@ class BASE_API DictionaryValue : public Value { // YOU SHOULD ALWAYS USE THE XXXWithoutPathExpansion() APIs WITH THESE, NOT // THE NORMAL XXX() APIs. This makes sure things will work correctly if any // keys have '.'s in them. - class BASE_API key_iterator + class key_iterator : private std::iterator { public: explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; } -- cgit v1.1