Commit 85ba7315 authored by haraken@chromium.org's avatar haraken@chromium.org

Oilpan: Remove unused methods in HeapVector

BUG=

Review URL: https://codereview.chromium.org/1324843003

git-svn-id: svn://svn.chromium.org/blink/trunk@201778 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 0735a025
......@@ -370,25 +370,6 @@ public:
: Vector<T, inlineCapacity, HeapAllocator>(other)
{
}
template<typename U>
void append(const U* data, size_t dataSize)
{
Vector<T, inlineCapacity, HeapAllocator>::append(data, dataSize);
}
template<typename U>
void append(const U& other)
{
Vector<T, inlineCapacity, HeapAllocator>::append(other);
}
template<typename U, size_t otherCapacity>
void appendVector(const HeapVector<U, otherCapacity>& other)
{
const Vector<U, otherCapacity, HeapAllocator>& otherVector = other;
Vector<T, inlineCapacity, HeapAllocator>::appendVector(otherVector);
}
};
template<typename T, size_t inlineCapacity = 0>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment