glslang: Fix over 100 warnings from MSVC warning level 4.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31202 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
2aa7f3a671
commit
93dfbe1309
35 changed files with 178 additions and 168 deletions
|
|
@ -891,7 +891,7 @@ TIntermBranch* TIntermediate::addBranch(TOperator branchOp, TIntermTyped* expres
|
|||
// This is to be executed after the final root is put on top by the parsing
|
||||
// process.
|
||||
//
|
||||
bool TIntermediate::postProcess(TIntermNode* root, EShLanguage language)
|
||||
bool TIntermediate::postProcess(TIntermNode* root, EShLanguage /*language*/)
|
||||
{
|
||||
if (root == 0)
|
||||
return true;
|
||||
|
|
@ -968,7 +968,7 @@ void TIntermediate::addSymbolLinkageNode(TIntermAggregate*& linkage, const TSymb
|
|||
// Add a caller->callee relationship to the call graph.
|
||||
// Assumes the strings are unique per signature.
|
||||
//
|
||||
void TIntermediate::addToCallGraph(TInfoSink& infoSink, const TString& caller, const TString& callee)
|
||||
void TIntermediate::addToCallGraph(TInfoSink& /*infoSink*/, const TString& caller, const TString& callee)
|
||||
{
|
||||
// Duplicates are okay, but faster to not keep them, and they come grouped by caller,
|
||||
// as long as new ones are push on the same end we check on for duplicates
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue