diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-10 00:16:28 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-10 00:16:28 +0000 |
commit | 11b901ee17f1ef5aa41c70046b7a5360534c633d (patch) | |
tree | 9dd5ca2b4ec4864658218126afc2f813a2c32c68 /base/pr_time_unittest.cc | |
parent | 64f5c3c6952e4861a269dd8e0d396ecea584ffa1 (diff) | |
download | chromium_src-11b901ee17f1ef5aa41c70046b7a5360534c633d.zip chromium_src-11b901ee17f1ef5aa41c70046b7a5360534c633d.tar.gz chromium_src-11b901ee17f1ef5aa41c70046b7a5360534c633d.tar.bz2 |
Use gcc 4.2 for the Mac build. Fix up new warnings and errors pointed out
by gcc 4.2:
warning: 'C' has a field 'C::m_' whose type uses the anonymous namespace
warning: missing braces around initializer for 'S'
error: extra qualification 'C::' on member 'm'
Review URL: http://codereview.chromium.org/1675
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1955 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/pr_time_unittest.cc')
-rw-r--r-- | base/pr_time_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/base/pr_time_unittest.cc b/base/pr_time_unittest.cc index aad0ccb..38c3140 100644 --- a/base/pr_time_unittest.cc +++ b/base/pr_time_unittest.cc @@ -42,8 +42,6 @@ class PRTimeTest : public testing::Test { PRTime comparison_time_local_; }; -} // namespace - // Tests the PR_ParseTimeString nspr helper function for // a variety of time strings. TEST_F(PRTimeTest, ParseTimeTest1) { @@ -238,3 +236,4 @@ TEST_F(PRTimeTest, ParseTimeTestEmpty) { EXPECT_FALSE(Time::FromString(L"", &parsed_time)); } +} // namespace |