[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1341-gc4fa2b8
Stephen Kelly
steveire at gmail.com
Tue Jan 1 12:42:10 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via c4fa2b86feff17cb2e3702f5b43f153a80259a77 (commit)
via f9fd0f029ef9ad2498e15284bfee6289333f9466 (commit)
via 34a8c823788c34e62f0c879c986a7b7940872976 (commit)
via 2716d8976fbbf728b2336b3793b5c2f7a470c0af (commit)
via 6bd93ea2402704e598519444d2d53252ed40153f (commit)
from d06a0317685fa9f922062ff6fc521951d970a2b9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c4fa2b86feff17cb2e3702f5b43f153a80259a77
commit c4fa2b86feff17cb2e3702f5b43f153a80259a77
Merge: d06a031 f9fd0f0
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Jan 1 12:42:08 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jan 1 12:42:08 2013 -0500
Merge topic 'fix-test-warnings' into next
f9fd0f0 Fix warning about unused variable.
34a8c82 CMake Nightly Date Stamp
2716d89 CMake Nightly Date Stamp
6bd93ea CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f9fd0f029ef9ad2498e15284bfee6289333f9466
commit f9fd0f029ef9ad2498e15284bfee6289333f9466
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Jan 1 18:35:28 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Tue Jan 1 18:35:28 2013 +0100
Fix warning about unused variable.
Noticed here:
http://open.cdash.org/testDetails.php?test=171666634&build=2743909
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();
}
-----------------------------------------------------------------------
Summary of changes:
Source/CMakeVersion.cmake | 2 +-
Tests/CMakeCommands/target_link_libraries/depB.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list