summaryrefslogtreecommitdiff
path: root/modules/websocket/websocket_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/websocket/websocket_macros.h')
-rw-r--r--modules/websocket/websocket_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/websocket/websocket_macros.h b/modules/websocket/websocket_macros.h
index 8aa01a70ed..f7eafcff1f 100644
--- a/modules/websocket/websocket_macros.h
+++ b/modules/websocket/websocket_macros.h
@@ -56,13 +56,13 @@ public:\
static CNAME *create() {\
\
if (!_create)\
- return NULL;\
+ return nullptr;\
return _create();\
}\
protected:\
#define GDCINULL(CNAME) \
-CNAME *(*CNAME::_create)() = NULL;
+CNAME *(*CNAME::_create)() = nullptr;
#define GDCIIMPL(IMPNAME, CNAME) \
public:\