glslang portability: Resolve OSX errors, some other OS warnings.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31468 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich
2015-06-10 22:05:48 +00:00
parent 3ef22f2139
commit 79eaa91e6f
7 changed files with 29 additions and 28 deletions

View File

@@ -299,7 +299,7 @@ namespace spv {
void spirvbin_t::stripDebug()
{
if ((options & Options::STRIP) == 0)
if ((options & STRIP) == 0)
return;
// build local Id and name maps
@@ -337,7 +337,7 @@ namespace spv {
process(
[&](spv::Op opCode, unsigned start) {
// remember opcodes we want to strip later
if ((options & Options::STRIP) && isStripOp(opCode))
if ((options & STRIP) && isStripOp(opCode))
stripInst(start);
if (opCode == spv::Op::OpName) {