diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2021-11-11 10:23:16 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2021-11-11 10:23:16 -0500 | 
| commit | 75110629de7786d667ea7c90b025f97c22650316 (patch) | |
| tree | 8d84d5dc7b635b1435235726ea23ee9c85be272c /indra | |
| parent | 69a39dce0b6e96e03414928a3db8189cc5aece7e (diff) | |
SL-16094: Stylish braces!
Diffstat (limited to 'indra')
| -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;      } | 
