Unverified Commit 2b6a18bd by John Kessenich Committed by GitHub

Merge pull request #2292 from proydakov/gcc-unused-parameter

Fixed GCC -Wunused-parameter in hlslParseables.cpp.
parents 27e915ed f6e34463
...@@ -331,7 +331,7 @@ glslang::TString& AppendTypeName(glslang::TString& s, const char* argOrder, cons ...@@ -331,7 +331,7 @@ glslang::TString& AppendTypeName(glslang::TString& s, const char* argOrder, cons
// //
// It is possible that this is not needed, but that would require some tweaking // It is possible that this is not needed, but that would require some tweaking
// of other rules to get the same results. // of other rules to get the same results.
inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1) inline bool IsValid(const char* cname, char /* retOrder */, char /* retType */, char argOrder, char /* argType */, int dim0, int /* dim1 */)
{ {
const bool isVec = (argOrder == 'V'); const bool isVec = (argOrder == 'V');
......
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