diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-25 20:26:25 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-08-25 20:26:25 +0300 |
commit | c21b3bbaccdad847611c5af78f612a3db2f47cc1 (patch) | |
tree | 802f84fa8c1b81f45d6f62c15fb353264d797651 /indra/llcommon/llsys.h | |
parent | e46f66ff31607d7580be3cae3fef9d070b9ba0d0 (diff) |
MAINT-7739 Make LLOSInfo a Singleton
Diffstat (limited to 'indra/llcommon/llsys.h')
-rw-r--r-- | indra/llcommon/llsys.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcommon/llsys.h b/indra/llcommon/llsys.h index 962367f69f..294d0066ca 100644 --- a/indra/llcommon/llsys.h +++ b/indra/llcommon/llsys.h @@ -37,13 +37,14 @@ // #include "llsd.h" +#include "llsingleton.h" #include <iosfwd> #include <string> -class LL_COMMON_API LLOSInfo +class LL_COMMON_API LLOSInfo : public LLSingleton<LLOSInfo> { + LLSINGLETON(LLOSInfo); public: - LLOSInfo(); void stream(std::ostream& s) const; const std::string& getOSString() const; |