diff options
author | Callum Prentice <callum@lindenlab.com> | 2023-01-26 18:01:25 -0800 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2023-01-26 18:01:25 -0800 |
commit | 923733e591eb547ad5dfec395ce7d3e8f0468c16 (patch) | |
tree | dca8d9f6edae8c36fa5f2b16d855788d32b8652a /indra/llcommon | |
parent | 99779d97f1e4650c7d46f1d97d5d70e2aacfbdb8 (diff) |
DRTVWR-489-emoji: missed the override warning/error in the tests... grr...
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/tests/llsingleton_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/tests/llsingleton_test.cpp b/indra/llcommon/tests/llsingleton_test.cpp index 15ffe68e67..49cf76b07e 100644 --- a/indra/llcommon/tests/llsingleton_test.cpp +++ b/indra/llcommon/tests/llsingleton_test.cpp @@ -47,8 +47,8 @@ public: \ DEP_INIT /* dependency in initSingleton */ \ } sDepFlag; \ \ - void initSingleton(); \ - void cleanupSingleton(); \ + void initSingleton() override; \ + void cleanupSingleton() override; \ }; \ \ CLS::dep_flag CLS::sDepFlag = DEP_NONE |