ci: Fix -Wdeprecated-non-prototype warnings

Occurs on AppleClang
This commit is contained in:
Juan Ramos 2023-10-12 17:19:38 -06:00 committed by Juan Ramos
parent bbe0f575eb
commit 3fb9d9fde5
3 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@
#include "vulkan/vk_layer.h"
int foobar()
int square(int i)
{
return 0;
return i * i;
}