| Index: include/gpu/GrProgramElement.h
|
| diff --git a/include/gpu/GrProgramElement.h b/include/gpu/GrProgramElement.h
|
| index 2d834de5d732730f8e2d4648840acc529e27df20..e788486b5cc74d0d4c898268d7754d3e3628b3ac 100644
|
| --- a/include/gpu/GrProgramElement.h
|
| +++ b/include/gpu/GrProgramElement.h
|
| @@ -45,7 +45,7 @@ public:
|
| --fRefCnt;
|
| if (0 == fRefCnt) {
|
| if (0 == fPendingExecutions) {
|
| - SkDELETE(this);
|
| + delete this;
|
| return;
|
| } else {
|
| this->removeRefs();
|
| @@ -96,7 +96,7 @@ private:
|
| --fPendingExecutions;
|
| if (0 == fPendingExecutions) {
|
| if (0 == fRefCnt) {
|
| - SkDELETE(this);
|
| + delete this;
|
| return;
|
| } else {
|
| this->pendingIOComplete();
|
|
|