mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-04-04 12:45:00 +00:00
ci: Fix -Wdeprecated-non-prototype warnings
Occurs on AppleClang
This commit is contained in:
parent
bbe0f575eb
commit
3fb9d9fde5
3 changed files with 5 additions and 5 deletions
|
@ -34,7 +34,7 @@ if (MSVC)
|
|||
endif()
|
||||
|
||||
# vk_icd.h
|
||||
add_executable(vk_icd vk_icd.c)
|
||||
add_library(vk_icd MODULE vk_icd.c)
|
||||
target_link_libraries(vk_icd PRIVATE Vulkan::Headers)
|
||||
|
||||
# vk_layer.h
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "vulkan/vk_icd.h"
|
||||
|
||||
int main()
|
||||
int square(int i)
|
||||
{
|
||||
return 0;
|
||||
return i * i;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "vulkan/vk_layer.h"
|
||||
|
||||
int foobar()
|
||||
int square(int i)
|
||||
{
|
||||
return 0;
|
||||
return i * i;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue