summaryrefslogtreecommitdiffstats
path: root/src/util/share.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/share.h')
-rw-r--r--src/util/share.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/share.h b/src/util/share.h
index 6e98c5258..a2672afa4 100644
--- a/src/util/share.h
+++ b/src/util/share.h
@@ -23,7 +23,7 @@ namespace Util {
class ptr_shared {
public:
- ptr_shared() : _string(NULL) {}
+ ptr_shared() : _string(nullptr) {}
ptr_shared(ptr_shared const &other) : _string(other._string) {}
operator char const *() const { return _string; }