mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03: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;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
int foo();
|
||||
int foo(void);
|
||||
|
||||
int main(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user