Remove unused parameters from target_link_libraries tests.
This commit is contained in:
parent
efdf152fe1
commit
adcc00b16a
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#include "subdirlib.h"
|
#include "subdirlib.h"
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int, char **)
|
||||||
{
|
{
|
||||||
DepA a;
|
DepA a;
|
||||||
DepB b;
|
DepB b;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
#include "depD.h"
|
#include "depD.h"
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int, char **)
|
||||||
{
|
{
|
||||||
DepD d;
|
DepD d;
|
||||||
DepA a = d.getA();
|
DepA a = d.getA();
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#error Expected TEST_DEF definition
|
#error Expected TEST_DEF definition
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int, char **)
|
||||||
{
|
{
|
||||||
DepG g;
|
DepG g;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue