~statik/ubuntu/maverick/protobuf/A

« back to all changes in this revision

Viewing changes to gtest/test/gtest-typed-test_test.cc

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2010-02-11 11:13:19 UTC
  • mfrom: (2.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100211111319-zdn8hmw0gh8s4cf8
Tags: 2.2.0a-0.1ubuntu1
* Merge from Debian testing.
* Remaining Ubuntu changes:
  - Don't use python2.4.
* Ubuntu changes dropped:
  - Disable death tests on Itanium, fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
  // Typedefs in the fixture class template can be visited via the
101
101
  // "typename TestFixture::" prefix.
102
102
  typename TestFixture::List empty;
103
 
  EXPECT_EQ(0, empty.size());
 
103
  EXPECT_EQ(0U, empty.size());
104
104
 
105
105
  typename TestFixture::IntSet empty2;
106
 
  EXPECT_EQ(0, empty2.size());
 
106
  EXPECT_EQ(0U, empty2.size());
107
107
 
108
108
  // Non-static members of the fixture class must be visited via
109
109
  // 'this', as required by C++ for class templates.