Commit e8675195 by Corentin Wallez

Fix "unused private variable" warning in ParseContext

BUG=angleproject:892 Change-Id: I3d0c23f1c2d43477c8b4ff28a6db470b3491de0b Reviewed-on: https://chromium-review.googlesource.com/271276Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Tested-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 3730f644
......@@ -41,7 +41,6 @@ class TParseContext : angle::NonCopyable
symbolTable(symt),
mShaderType(type),
mShaderSpec(spec),
mCompileOptions(options),
mTreeRoot(nullptr),
mLoopNestingLevel(0),
mStructNestingLevel(0),
......@@ -328,7 +327,6 @@ class TParseContext : angle::NonCopyable
sh::GLenum mShaderType; // vertex or fragment language (future: pack or unpack)
ShShaderSpec mShaderSpec; // The language specification compiler conforms to - GLES2 or WebGL.
int mShaderVersion;
int mCompileOptions;
TIntermNode *mTreeRoot; // root of parse tree being created
int mLoopNestingLevel; // 0 if outside all loops
int mStructNestingLevel; // incremented while parsing a struct declaration
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment