| Index: cc/base/contiguous_container_unittest.cc
|
| diff --git a/cc/base/contiguous_container_unittest.cc b/cc/base/contiguous_container_unittest.cc
|
| index dd44665dd1e3bcd029109a463dae5ad1aaa0f965..9e5e87b0e691b8f63c41c4b5339ed99a4bf17ada 100644
|
| --- a/cc/base/contiguous_container_unittest.cc
|
| +++ b/cc/base/contiguous_container_unittest.cc
|
| @@ -161,16 +161,6 @@ TEST(ContiguousContainerTest, ReverseIteration) {
|
| "Non-const iteration should produce non-const references.");
|
| }
|
|
|
| -// Checks that the latter list has pointers to the elements of the former.
|
| -template <typename It1, typename It2>
|
| -bool EqualPointers(It1 it1, const It1& end1, It2 it2) {
|
| - for (; it1 != end1; ++it1, ++it2) {
|
| - if (&*it1 != *it2)
|
| - return false;
|
| - }
|
| - return true;
|
| -}
|
| -
|
| TEST(ContiguousContainerTest, CapacityInBytes) {
|
| const int iterations = 500;
|
| const size_t initial_capacity = 10 * kMaxPointSize;
|
|
|