diff options
author | Mathias Agopian <mathias@google.com> | 2012-08-24 16:55:29 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-08-24 17:16:10 -0700 |
commit | 225c66a48cdc3acef21ee380dc134449749d3cb3 (patch) | |
tree | b0eae1a1f04f1c363f7c5e7b20fef9b5334c67dc /libs | |
parent | 13a082e160c2d1d8006b93a555a57035213d568b (diff) | |
download | frameworks_native-225c66a48cdc3acef21ee380dc134449749d3cb3.zip frameworks_native-225c66a48cdc3acef21ee380dc134449749d3cb3.tar.gz frameworks_native-225c66a48cdc3acef21ee380dc134449749d3cb3.tar.bz2 |
Revert "put back the unused virtuals in Vector<>"
This reverts commit 1648d4c13ba2eff3ea14cd87ee94028458a39f97.
Bug: 6977192
Change-Id: Idbb6b239aaed4fb1c054ce943f6ba06ede3492bb
Diffstat (limited to 'libs')
-rw-r--r-- | libs/utils/VectorImpl.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libs/utils/VectorImpl.cpp b/libs/utils/VectorImpl.cpp index 3855305..020ec15 100644 --- a/libs/utils/VectorImpl.cpp +++ b/libs/utils/VectorImpl.cpp @@ -494,15 +494,6 @@ void VectorImpl::_do_move_backward(void* dest, const void* from, size_t num) con do_move_backward(dest, from, num); } -void VectorImpl::reservedVectorImpl1() { } -void VectorImpl::reservedVectorImpl2() { } -void VectorImpl::reservedVectorImpl3() { } -void VectorImpl::reservedVectorImpl4() { } -void VectorImpl::reservedVectorImpl5() { } -void VectorImpl::reservedVectorImpl6() { } -void VectorImpl::reservedVectorImpl7() { } -void VectorImpl::reservedVectorImpl8() { } - /*****************************************************************************/ SortedVectorImpl::SortedVectorImpl(size_t itemSize, uint32_t flags) @@ -618,16 +609,6 @@ ssize_t SortedVectorImpl::remove(const void* item) return i; } -void SortedVectorImpl::reservedSortedVectorImpl1() { }; -void SortedVectorImpl::reservedSortedVectorImpl2() { }; -void SortedVectorImpl::reservedSortedVectorImpl3() { }; -void SortedVectorImpl::reservedSortedVectorImpl4() { }; -void SortedVectorImpl::reservedSortedVectorImpl5() { }; -void SortedVectorImpl::reservedSortedVectorImpl6() { }; -void SortedVectorImpl::reservedSortedVectorImpl7() { }; -void SortedVectorImpl::reservedSortedVectorImpl8() { }; - - /*****************************************************************************/ }; // namespace android |