mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 21:58:50 -05:00
CheckIPOSupported: Fix -Wstrict-prototypes warnings in check for C
Fixes: #25967
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
int foo()
|
int foo(void)
|
||||||
{
|
{
|
||||||
return 0x42;
|
return 0x42;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
int foo();
|
int foo(void);
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user