Remove unused parameters from target_link_libraries tests.

This commit is contained in:
Stephen Kelly 2013-03-06 22:54:49 +01:00
parent efdf152fe1
commit adcc00b16a
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#include "subdirlib.h"
int main(int argc, char **argv)
int main(int, char **)
{
DepA a;
DepB b;

View File

@ -1,7 +1,7 @@
#include "depD.h"
int main(int argc, char **argv)
int main(int, char **)
{
DepD d;
DepA a = d.getA();

View File

@ -8,7 +8,7 @@
#error Expected TEST_DEF definition
#endif
int main(int argc, char **argv)
int main(int, char **)
{
DepG g;