Ver Fonte

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;
         ^
Stephen Kelly há 13 anos atrás
pai
commit
b6346f2556
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Tests/CMakeCommands/target_link_libraries/depB.cpp

+ 1 - 1
Tests/CMakeCommands/target_link_libraries/depB.cpp

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