diff --git a/indra/newview/lldrawpoolavatar.cpp b/indra/newview/lldrawpoolavatar.cpp
index 2cfcac652ca6da73ab516cf9932261e52d7c4d77..5c8289b584e2ca5a71ccab87d9bc55d188db0a7c 100644
--- a/indra/newview/lldrawpoolavatar.cpp
+++ b/indra/newview/lldrawpoolavatar.cpp
@@ -53,7 +53,6 @@
 #include "llviewercontrol.h" // for gSavedSettings
 #include "llviewertexturelist.h"
 
-static U32 sDataMask = LLDrawPoolAvatar::VERTEX_DATA_MASK;
 static U32 sBufferUsage = GL_STREAM_DRAW;
 static U32 sShaderLevel = 0;
 
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 3b09240d321479b62a4cc62305180a806f2fa609..f19fbe11eceb5729a8e2b4a371bf8d3b32fbc6db 100644
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -874,7 +874,7 @@ LLMeshRepoThread::~LLMeshRepoThread()
 
 void LLMeshRepoThread::run()
 {
-	LLCDResult res = LLConvexDecomposition::initThread();
+	/*LLCDResult res = */LLConvexDecomposition::initThread();
 	//if (res != LLCD_OK && LLConvexDecomposition::isFunctional())
 	//{
 	//	LL_WARNS(LOG_MESH) << "Convex decomposition unable to be loaded.  Expect severe problems." << LL_ENDL;
diff --git a/indra/newview/llvisualeffect.h b/indra/newview/llvisualeffect.h
index 8477f6d5d0c2671aa5be798a09534b014f36a76f..6d2a7624d6acb78aff0503e24d6eb77827b34ed3 100644
--- a/indra/newview/llvisualeffect.h
+++ b/indra/newview/llvisualeffect.h
@@ -46,6 +46,7 @@ enum class EVisualEffectType
 
 struct LLVisualEffectParams
 {
+	virtual ~LLVisualEffectParams() = default;
 	virtual void step(bool isLast) = 0;
 };