summaryrefslogtreecommitdiff
path: root/src/base/exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/exception.h')
-rw-r--r--src/base/exception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/exception.h b/src/base/exception.h
index 1d49d94cc..8a89c99fc 100644
--- a/src/base/exception.h
+++ b/src/base/exception.h
@@ -151,7 +151,7 @@ public:
static void setCurrent(LastExceptionBuffer* buffer) { s_currentBuffer = buffer; }
static const char* currentContents() {
- return (getCurrent() == NULL) ? NULL : getCurrent()->getContents();
+ return (getCurrent() == nullptr) ? nullptr : getCurrent()->getContents();
}
private:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback