diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-02-10 21:10:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-02-10 21:12:09 +0100 |
| commit | 2897419ba3b5a9ec7883beb033b1010bd5fd8aa8 (patch) | |
| tree | 30a900fc71b0e444312c74ce93d13175747793cf /src/lib/config.cc | |
| parent | 7f5c053a13654224cea65beea0478267b97b8e1f (diff) | |
C++11 cleanup.checked-for-v2.16.x
Diffstat (limited to 'src/lib/config.cc')
| -rw-r--r-- | src/lib/config.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index b90f02816..463778887 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -619,7 +619,7 @@ catch (...) { Config * Config::instance () { - if (_instance == 0) { + if (_instance == nullptr) { _instance = new Config; _instance->read (); } |
