delete dead code.
authorChris Lattner <sabre@nondot.org>
Sat, 4 Sep 2010 18:17:16 +0000 (18:17 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 4 Sep 2010 18:17:16 +0000 (18:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113075 91177308-0d34-0410-b5e6-96231b3b80d8

utils/unittest/googletest/gtest.cc

index aa2d5bb92509a58a18bb6595d564ad5b472fc692..6e291aee507f98cfedba2b1b4edd1c26e418d88b 100644 (file)
@@ -2224,35 +2224,6 @@ int TestInfo::increment_death_test_count() {
   return impl_->result()->increment_death_test_count();
 }
 
-namespace {
-
-// A predicate that checks the test name of a TestInfo against a known
-// value.
-//
-// This is used for implementation of the TestCase class only.  We put
-// it in the anonymous namespace to prevent polluting the outer
-// namespace.
-//
-// TestNameIs is copyable.
-class TestNameIs {
- public:
-  // Constructor.
-  //
-  // TestNameIs has NO default constructor.
-  explicit TestNameIs(const char* name)
-      : name_(name) {}
-
-  // Returns true iff the test name of test_info matches name_.
-  bool operator()(const TestInfo * test_info) const {
-    return test_info && internal::String(test_info->name()).Compare(name_) == 0;
-  }
-
- private:
-  internal::String name_;
-};
-
-}  // namespace
-
 namespace internal {
 
 // This method expands all parameterized tests registered with macros TEST_P