diff options
Diffstat (limited to 'core/cowdata.h')
-rw-r--r-- | core/cowdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/cowdata.h b/core/cowdata.h index e9cfa2925a..b63a407511 100644 --- a/core/cowdata.h +++ b/core/cowdata.h @@ -132,7 +132,7 @@ public: } _FORCE_INLINE_ void clear() { resize(0); } - _FORCE_INLINE_ bool empty() const { return _ptr == 0; } + _FORCE_INLINE_ bool empty() const { return _ptr == nullptr; } _FORCE_INLINE_ void set(int p_index, const T &p_elem) { |