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