Skip to content
Snippets Groups Projects
Commit b05ca33c authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-346

Checker: UNINIT_CTOR
Function: LLFeatureManager::LLFeatureManager()
File: /indra/newview/llfeaturemanager.h
parent d74aff78
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,14 @@ class LLFeatureList
class LLFeatureManager : public LLFeatureList, public LLSingleton<LLFeatureManager>
{
public:
LLFeatureManager() :
LLFeatureList("default"), mInited(FALSE), mTableVersion(0), mSafe(FALSE), mGPUClass(GPU_CLASS_UNKNOWN)
LLFeatureManager()
: LLFeatureList("default"),
mInited(FALSE),
mTableVersion(0),
mSafe(FALSE),
mGPUClass(GPU_CLASS_UNKNOWN),
mGPUSupported(FALSE)
{
}
~LLFeatureManager() {cleanupFeatureTables();}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment