fix copy in SkTDArray

R=bsalomon@google.com

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

git-svn-id: http://skia.googlecode.com/svn/trunk@9839 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
zachr@google.com 2013-07-01 17:04:32 +00:00
parent e8f3471f94
commit c6081abd2f

View File

@ -268,7 +268,7 @@ public:
}
void copy(T* dst) const {
this->copyRange(0, fCount, dst);
this->copyRange(dst, 0, fCount);
}
// routines to treat the array like a stack