Index: include/private/SkTArray.h |
diff --git a/include/private/SkTArray.h b/include/private/SkTArray.h |
index 1c06bf331ae8e92f3efcdb54b60fd3af3572443e..1fe2c3857c1555c58efe20303709dbde649ee868 100644 |
--- a/include/private/SkTArray.h |
+++ b/include/private/SkTArray.h |
@@ -232,19 +232,6 @@ |
this->checkRealloc(n); |
for (int i = 0; i < n; ++i) { |
new (fItemArray + fCount + i) T(t[i]); |
- } |
- fCount += n; |
- return fItemArray + fCount - n; |
- } |
- |
- /** |
- * Version of above that uses the move constructor to set n items. |
- */ |
- T* move_back_n(int n, T* t) { |
- SkASSERT(n >= 0); |
- this->checkRealloc(n); |
- for (int i = 0; i < n; ++i) { |
- new (fItemArray + fCount + i) T(std::move(t[i])); |
} |
fCount += n; |
return fItemArray + fCount - n; |