From 1968b5ff0ebb9a6e6f6d2afc157a94f610c9bea1 Mon Sep 17 00:00:00 2001 From: Michael Mc Donnell Date: Sun, 3 Apr 2016 14:47:51 -0700 Subject: layers: Fix 7 signed/unsigned comparison warnings on VS2015 --- layers/core_validation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layers/core_validation.cpp') diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 1f99480e..7cc7979c 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -1488,7 +1488,7 @@ static void collect_interface_by_location(layer_data *my_data, shader_module con /* find the end of the entrypoint's name string. additional zero bytes follow the actual null terminator, to fill out the rest of the word - so we only need to look at the last byte in the word to determine which word contains the terminator. */ - auto word = 3; + uint32_t word = 3; while (entrypoint.word(word) & 0xff000000u) { ++word; } @@ -1973,13 +1973,13 @@ static void mark_accessible_ids(shader_module const *src, spirv_inst_iter entryp worklist.insert(insn.word(1)); /* image -- different operand order to above */ break; case spv::OpFunctionCall: - for (auto i = 3; i < insn.len(); i++) { + for (uint32_t i = 3; i < insn.len(); i++) { worklist.insert(insn.word(i)); /* fn itself, and all args */ } break; case spv::OpExtInst: - for (auto i = 5; i < insn.len(); i++) { + for (uint32_t i = 5; i < insn.len(); i++) { worklist.insert(insn.word(i)); /* operands to ext inst */ } break; -- cgit v1.2.3