mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 14:19:59 -05:00
Merge topic 'CheckIPOSupported-C-prototypes'
d5075fd10f CheckIPOSupported: Fix -Wstrict-prototypes warnings in check for C
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !9502
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