diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 18:23:28 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 18:23:28 +0000 |
commit | 5fe482a410ab03da63a470de4ebafb58fda2310c (patch) | |
tree | e378af782525850d2c2369d13c9903ab1c6c5d65 /base | |
parent | 0d178ecc3db280eb4d1d741a331dfb8d3d279f96 (diff) | |
download | chromium_src-5fe482a410ab03da63a470de4ebafb58fda2310c.zip chromium_src-5fe482a410ab03da63a470de4ebafb58fda2310c.tar.gz chromium_src-5fe482a410ab03da63a470de4ebafb58fda2310c.tar.bz2 |
#include <ostream> in base/string16.cc. This is required for the Mac OS X 10.6
SDK build. Otherwise, various bits of <ostream> that would be needed are
declared but not defined.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3631001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/string16.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/string16.cc b/base/string16.cc index 69d10e7..6fc38ce 100644 --- a/base/string16.cc +++ b/base/string16.cc @@ -13,6 +13,8 @@ #elif defined(WCHAR_T_IS_UTF32) +#include <ostream> + #include "base/utf_string_conversions.h" namespace base { |