diff options
author | Brad King <brad.king@kitware.com> | 2013-01-03 18:53:30 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-03 18:53:30 (GMT) |
commit | 2c4969a131fbdd949cac02520133b2c865b9fd78 (patch) | |
tree | 6106ee76722207425310f4796aa20124cdd48846 /Tests/CMakeCommands | |
parent | de34995d185c228b419bf0f3d5854fbccff3db66 (diff) | |
parent | b6346f25565f06bde208b8303d70bbe0fabc8210 (diff) | |
download | CMake-2c4969a131fbdd949cac02520133b2c865b9fd78.zip CMake-2c4969a131fbdd949cac02520133b2c865b9fd78.tar.gz CMake-2c4969a131fbdd949cac02520133b2c865b9fd78.tar.bz2 |
Merge topic 'fix-test-warnings'
b6346f2 Tests: Fix warning about unused variable
Diffstat (limited to 'Tests/CMakeCommands')
-rw-r--r-- | Tests/CMakeCommands/target_link_libraries/depB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeCommands/target_link_libraries/depB.cpp b/Tests/CMakeCommands/target_link_libraries/depB.cpp index 97e5be2..1bbe38b 100644 --- a/Tests/CMakeCommands/target_link_libraries/depB.cpp +++ b/Tests/CMakeCommands/target_link_libraries/depB.cpp @@ -7,5 +7,5 @@ int DepB::foo() { DepA a; - return 0; + return a.foo(); } |