mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
b6346f2556
Resolve this warning:
".../Tests/CMakeCommands/target_link_libraries/depB.cpp", line 8: warning:
variable "a" was declared but never referenced
DepA a;
^
12 lines
88 B
C++
12 lines
88 B
C++
|
|
#include "depB.h"
|
|
|
|
#include "depA.h"
|
|
|
|
int DepB::foo()
|
|
{
|
|
DepA a;
|
|
|
|
return a.foo();
|
|
}
|