Tests: Fix warning about unused variable

Resolve this warning:

 ".../Tests/CMakeCommands/target_link_libraries/depB.cpp", line 8: warning:
          variable "a" was declared but never referenced
    DepA a;
         ^
This commit is contained in:
Stephen Kelly 2013-01-01 18:35:28 +01:00 committed by Brad King
parent 34a8c82378
commit b6346f2556
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ int DepB::foo()
{
DepA a;
return 0;
return a.foo();
}