Fix some Clang warnings about unused private members

This was SVN commit r14023.
This commit is contained in:
Ykkrosh 2013-10-19 00:53:58 +00:00
parent c0b628bcac
commit ac335f37c8
4 changed files with 1 additions and 7 deletions

View File

@ -22,8 +22,7 @@
static CColor BrokenColor(0.3f, 0.3f, 0.3f, 1.0f);
CMaterial::CMaterial() :
m_AlphaBlending(false),
m_PlayerID(INVALID_PLAYER)
m_AlphaBlending(false)
{
}

View File

@ -93,8 +93,6 @@ private:
CShaderRenderQueries m_RenderQueries;
bool m_AlphaBlending;
player_id_t m_PlayerID;
};
#endif

View File

@ -68,8 +68,6 @@ private:
JSContext * m_Context;
JSObject * m_GlobalObject;
JSErrorReport m_ErrorReport;
std::map < std::string, CustomType > m_CustomObjectTypes;
// The long-term plan is to migrate from ScriptingHost to the newer shinier ScriptInterface.

View File

@ -427,7 +427,6 @@ private:
*/
class SkipTagRequireControlGroupsAndFlagObstructionFilter : public IObstructionTestFilter
{
bool m_Exclude;
tag_t m_Tag;
entity_id_t m_Group;
entity_id_t m_Group2;