diff options
Diffstat (limited to 'core/string_name.h')
-rw-r--r-- | core/string_name.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/string_name.h b/core/string_name.h index e68ab8bfa3..aec87b8e66 100644 --- a/core/string_name.h +++ b/core/string_name.h @@ -61,8 +61,8 @@ class StringName { _Data *prev; _Data *next; _Data() { - cname = NULL; - next = prev = NULL; + cname = nullptr; + next = prev = nullptr; idx = 0; hash = 0; } |