| Index: src/gpu/GrAtlasTextContext.h
|
| diff --git a/src/gpu/GrAtlasTextContext.h b/src/gpu/GrAtlasTextContext.h
|
| index 4eeb42c84fa6d0a3f37067acc3b0477654de708f..3bb75b8d97cbba1529da43ce36b5832c241dfe2d 100644
|
| --- a/src/gpu/GrAtlasTextContext.h
|
| +++ b/src/gpu/GrAtlasTextContext.h
|
| @@ -167,7 +167,7 @@ private:
|
| // refcnted and malloced
|
| struct DistanceAdjustTable : public SkNVRefCnt<DistanceAdjustTable> {
|
| DistanceAdjustTable() { this->buildDistanceAdjustTable(); }
|
| - ~DistanceAdjustTable() { SkDELETE_ARRAY(fTable); }
|
| + ~DistanceAdjustTable() { delete[] fTable; }
|
|
|
| const SkScalar& operator[] (int i) const {
|
| return fTable[i];
|
|
|