mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
Tests: Fix pedantic warning about missing void in C function declaration
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include "StaticLibExample.h"
|
||||
|
||||
int FourtyFour()
|
||||
int FourtyFour(void)
|
||||
{
|
||||
return 44;
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
int FourtyFour();
|
||||
int FourtyFour(void);
|
||||
|
||||
Reference in New Issue
Block a user