| Index: src/gpu/gl/debug/GrDebugGL.h
|
| diff --git a/src/gpu/gl/debug/GrDebugGL.h b/src/gpu/gl/debug/GrDebugGL.h
|
| index ae6a9783635696c1c929ac76a51849a909975a5e..2560879b4f46b165fe2a5ecb4a7180c31b794ffa 100644
|
| --- a/src/gpu/gl/debug/GrDebugGL.h
|
| +++ b/src/gpu/gl/debug/GrDebugGL.h
|
| @@ -92,7 +92,7 @@ public:
|
| // someone should admit to actually using this class
|
| SkASSERT(0 < gStaticRefCount);
|
|
|
| - if (NULL == gObj) {
|
| + if (nullptr == gObj) {
|
| gObj = new GrDebugGL;
|
| }
|
|
|
| @@ -110,7 +110,7 @@ public:
|
| gStaticRefCount--;
|
| if (0 == gStaticRefCount) {
|
| delete gObj;
|
| - gObj = NULL;
|
| + gObj = nullptr;
|
| }
|
| }
|
|
|
|
|