summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsingleton.h
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2021-11-11 10:23:16 -0500
committerNat Goodspeed <nat@lindenlab.com>2021-11-11 10:23:16 -0500
commit75110629de7786d667ea7c90b025f97c22650316 (patch)
tree8d84d5dc7b635b1435235726ea23ee9c85be272c /indra/llcommon/llsingleton.h
parent69a39dce0b6e96e03414928a3db8189cc5aece7e (diff)
SL-16094: Stylish braces!
Diffstat (limited to 'indra/llcommon/llsingleton.h')
-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;
}