diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2021-11-11 10:23:16 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2021-11-19 14:43:19 -0500 |
commit | 18de6c9b989cc7060f2a314f5b68cc102677823b (patch) | |
tree | e3d1cfce35f7229b76d6afc616608e34679504c6 /indra/llcommon | |
parent | bbf3f516bdd551a53b7dfc0affcb1a36e6680169 (diff) |
SL-16094: Stylish braces!
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llsingleton.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h index fdd5bdfea9..6042c0906c 100644 --- a/indra/llcommon/llsingleton.h +++ b/indra/llcommon/llsingleton.h @@ -858,7 +858,8 @@ public: static inline T& instance() { return *getInstance(); } static inline bool instanceExists() { return sInstance != nullptr; } - static void deleteSingleton() { + static void deleteSingleton() + { delete sInstance; sInstance = nullptr; } |