diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-07-13 19:25:02 (GMT) |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-07-13 19:25:02 (GMT) |
commit | 89080477aee9bd91536c9fb47bc31c62ea7d75bb (patch) | |
tree | 982a302a1017c97c3cf11da4341492509a08dc2f /src/gtest-test-part.cc | |
parent | 600105ee3ac48a01143486e5536a5b8fff5b5b25 (diff) | |
download | googletest-89080477aee9bd91536c9fb47bc31c62ea7d75bb.zip googletest-89080477aee9bd91536c9fb47bc31c62ea7d75bb.tar.gz googletest-89080477aee9bd91536c9fb47bc31c62ea7d75bb.tar.bz2 |
Adds color support for TERM=linux (by Alexander Demin); renames List to Vector (by Zhanyong Wan); implements Vector::Erase (by Vlad Losev).
Diffstat (limited to 'src/gtest-test-part.cc')
-rw-r--r-- | src/gtest-test-part.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gtest-test-part.cc b/src/gtest-test-part.cc index 472b8c5..f053773 100644 --- a/src/gtest-test-part.cc +++ b/src/gtest-test-part.cc @@ -66,17 +66,17 @@ std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { // Constructs an empty TestPartResultArray. TestPartResultArray::TestPartResultArray() - : list_(new internal::List<TestPartResult>) { + : array_(new internal::Vector<TestPartResult>) { } // Destructs a TestPartResultArray. TestPartResultArray::~TestPartResultArray() { - delete list_; + delete array_; } // Appends a TestPartResult to the array. void TestPartResultArray::Append(const TestPartResult& result) { - list_->PushBack(result); + array_->PushBack(result); } // Returns the TestPartResult at the given index (0-based). @@ -86,12 +86,12 @@ const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { internal::posix::Abort(); } - return list_->GetElement(index); + return array_->GetElement(index); } // Returns the number of TestPartResult objects in the array. int TestPartResultArray::size() const { - return list_->size(); + return array_->size(); } namespace internal { |