summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsys.h
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2017-08-25 20:26:25 +0300
committerandreykproductengine <andreykproductengine@lindenlab.com>2017-08-25 20:26:25 +0300
commitc21b3bbaccdad847611c5af78f612a3db2f47cc1 (patch)
tree802f84fa8c1b81f45d6f62c15fb353264d797651 /indra/llcommon/llsys.h
parente46f66ff31607d7580be3cae3fef9d070b9ba0d0 (diff)
MAINT-7739 Make LLOSInfo a Singleton
Diffstat (limited to 'indra/llcommon/llsys.h')
-rw-r--r--indra/llcommon/llsys.h5
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;