[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2412-g13904cf

Stephen Kelly steveire at gmail.com
Wed Mar 6 16:55:59 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  13904cf9790feea6c8566f85bf2965d0768c588d (commit)
       via  adcc00b16a24d66f7cab5336f31b14a32d3240a7 (commit)
      from  98bc278ef6ef299980e46f21a2b916b7b10793e4 (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=13904cf9790feea6c8566f85bf2965d0768c588d
commit 13904cf9790feea6c8566f85bf2965d0768c588d
Merge: 98bc278 adcc00b
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Mar 6 16:55:57 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Mar 6 16:55:57 2013 -0500

    Merge topic 'clean-target_link_libraries-test' into next
    
    adcc00b Remove unused parameters from target_link_libraries tests.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=adcc00b16a24d66f7cab5336f31b14a32d3240a7
commit adcc00b16a24d66f7cab5336f31b14a32d3240a7
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Wed Mar 6 22:54:49 2013 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Wed Mar 6 22:54:49 2013 +0100

    Remove unused parameters from target_link_libraries tests.

diff --git a/Tests/CMakeCommands/target_link_libraries/targetA.cpp b/Tests/CMakeCommands/target_link_libraries/targetA.cpp
index 559aef7..d1321a1 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetA.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetA.cpp
@@ -5,7 +5,7 @@
 
 #include "subdirlib.h"
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepA a;
   DepB b;
diff --git a/Tests/CMakeCommands/target_link_libraries/targetB.cpp b/Tests/CMakeCommands/target_link_libraries/targetB.cpp
index 063d63a..0913a57 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetB.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetB.cpp
@@ -1,7 +1,7 @@
 
 #include "depD.h"
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepD d;
   DepA a = d.getA();
diff --git a/Tests/CMakeCommands/target_link_libraries/targetC.cpp b/Tests/CMakeCommands/target_link_libraries/targetC.cpp
index ff6ba66..a4ef636 100644
--- a/Tests/CMakeCommands/target_link_libraries/targetC.cpp
+++ b/Tests/CMakeCommands/target_link_libraries/targetC.cpp
@@ -8,7 +8,7 @@
 #error Expected TEST_DEF definition
 #endif
 
-int main(int argc, char **argv)
+int main(int, char **)
 {
   DepG g;
 

-----------------------------------------------------------------------

Summary of changes:
 .../target_link_libraries/targetA.cpp              |    2 +-
 .../target_link_libraries/targetB.cpp              |    2 +-
 .../target_link_libraries/targetC.cpp              |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list