From 574bf1e11d73059ec5e6099e6806d919e1ac22b0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 28 May 2022 21:08:59 -0400 Subject: Clean up and strengthen warning flags --- examples/pugl_vulkan_cpp_demo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/pugl_vulkan_cpp_demo.cpp') diff --git a/examples/pugl_vulkan_cpp_demo.cpp b/examples/pugl_vulkan_cpp_demo.cpp index fe86c30..69f360d 100644 --- a/examples/pugl_vulkan_cpp_demo.cpp +++ b/examples/pugl_vulkan_cpp_demo.cpp @@ -1716,7 +1716,7 @@ run(const char* const programPath, app.world.setClassName("PuglVulkanCppDemo"); app.view.setWindowTitle("Pugl Vulkan C++ Demo"); app.view.setSizeHint(pugl::SizeHint::defaultSize, width, height); - app.view.setSizeHint(pugl::SizeHint::minSize, width / 4, height / 4); + app.view.setSizeHint(pugl::SizeHint::minSize, width / 4u, height / 4u); app.view.setBackend(pugl::vulkanBackend()); app.view.setHint(pugl::ViewHint::resizable, opts.resizable); const pugl::Status st = app.view.realize(); -- cgit v1.2.1