Use unsigned int instead of uint32_t
authorDan Sinclair <dsinclair@chromium.org>
Tue, 25 Sep 2018 20:32:06 +0000 (16:32 -0400)
committerDan Sinclair <dsinclair@chromium.org>
Tue, 25 Sep 2018 20:32:06 +0000 (16:32 -0400)
SPIRV/SpvBuilder.cpp
SPIRV/SpvBuilder.h

index 39eb8f2..7d77934 100644 (file)
@@ -631,7 +631,7 @@ Id Builder::getContainedTypeId(Id typeId) const
 // Returns true if 'typeId' is or contains a scalar type declared with 'typeOp'
 // of width 'width'. The 'width' is only consumed for int and float types.
 // Returns false otherwise.
-bool Builder::containsType(Id typeId, spv::Op typeOp, uint32_t width) const
+bool Builder::containsType(Id typeId, spv::Op typeOp, unsigned int width) const
 {
     const Instruction& instr = *module.getInstruction(typeId);
 
index 83edcd5..0836fff 100644 (file)
@@ -172,7 +172,7 @@ public:
     bool isImageType(Id typeId)        const { return getTypeClass(typeId) == OpTypeImage; }
     bool isSamplerType(Id typeId)      const { return getTypeClass(typeId) == OpTypeSampler; }
     bool isSampledImageType(Id typeId) const { return getTypeClass(typeId) == OpTypeSampledImage; }
-    bool containsType(Id typeId, Op typeOp, uint32_t width) const;
+    bool containsType(Id typeId, Op typeOp, unsigned int width) const;
 
     bool isConstantOpCode(Op opcode) const;
     bool isSpecConstantOpCode(Op opcode) const;