summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2021-11-11 10:23:16 -0500
committerNat Goodspeed <nat@lindenlab.com>2021-11-19 14:43:19 -0500
commit18de6c9b989cc7060f2a314f5b68cc102677823b (patch)
treee3d1cfce35f7229b76d6afc616608e34679504c6 /indra/llcommon
parentbbf3f516bdd551a53b7dfc0affcb1a36e6680169 (diff)
SL-16094: Stylish braces!
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llsingleton.h3
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;
}