diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-07-23 11:25:17 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-07-23 11:35:09 -0600 |
| commit | 765adc85453e2b97cb2843da2f64efadfa983e96 (patch) | |
| tree | cea8f2c449b4015d898d4106d6f8abb2ee4d95e5 | |
| parent | 61ea7a139c2384c57c67571fc109d50ce1720084 (diff) | |
| download | usermoji-765adc85453e2b97cb2843da2f64efadfa983e96.tar.xz | |
layers: eliminate Windows compiler warning
| -rw-r--r-- | layers/object_track.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/object_track.h b/layers/object_track.h index 5026ff02..824c255b 100644 --- a/layers/object_track.h +++ b/layers/object_track.h @@ -727,7 +727,7 @@ explicit_FreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, ui VkResult result = get_dispatch_table(ObjectTracker_device_table_map, device)->FreeDescriptorSets(device, descriptorPool, count, pDescriptorSets); loader_platform_thread_lock_mutex(&objLock); - for (int i=0; i<count; i++) + for (uint32_t i=0; i<count; i++) { destroy_obj(device, *pDescriptorSets++); } |
