aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2015-06-11 13:51:41 -0500
committerMark Lobodzinski <mark@lunarg.com>2015-06-11 13:51:41 -0500
commit4f7db6732641ecf2fae357deab5fc8047a8361ab (patch)
tree906721adf011025c58d6576d7cd658fae72f2308
parentb5708302c781ff2857b1519fa726ff914c5f5e46 (diff)
downloadusermoji-4f7db6732641ecf2fae357deab5fc8047a8361ab.tar.xz
layers: Fix compiler warning in ObjectTracker
Function validate_object should return VOID.
-rwxr-xr-xvk-layer-generate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vk-layer-generate.py b/vk-layer-generate.py
index cadf8d54..215b246d 100755
--- a/vk-layer-generate.py
+++ b/vk-layer-generate.py
@@ -870,7 +870,7 @@ class ObjectTrackerSubcommand(Subcommand):
header_txt.append('}')
header_txt.append('')
header_txt.append('// Validate that object is in the object map')
- header_txt.append('static bool32_t validate_object(const VkObject object)')
+ header_txt.append('static void validate_object(const VkObject object)')
header_txt.append('{')
header_txt.append(' if (objMap.find(object) == objMap.end()) {')
header_txt.append(' char str[1024];')