Merge topic 'clean-target_link_libraries-test'

adcc00b Remove unused parameters from target_link_libraries tests.
This commit is contained in:
Brad King 2013-03-12 13:46:36 -04:00 committed by CMake Topic Stage
commit 51af6cbcea
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;