[Cmake-commits] CMake branch, next, updated. v2.8.2-574-g24b3689

Brad King brad.king at kitware.com
Fri Aug 27 09:57:38 EDT 2010


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  24b3689d6582186a2d54acd5ef0c5af3a625fe07 (commit)
       via  a99f6208349c6ef93cd2fe558d3a6e9aa1194251 (commit)
      from  eb46484143d50558ce92b1911dda6bb9fc37c078 (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=24b3689d6582186a2d54acd5ef0c5af3a625fe07
commit 24b3689d6582186a2d54acd5ef0c5af3a625fe07
Merge: eb46484 a99f620
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 27 09:57:36 2010 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Aug 27 09:57:36 2010 -0400

    Merge topic 'vs-utility-depends' into next
    
    a99f620 Fix unused parameter warning in VS 7.1 generator


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a99f6208349c6ef93cd2fe558d3a6e9aa1194251
commit a99f6208349c6ef93cd2fe558d3a6e9aa1194251
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 27 09:56:00 2010 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Aug 27 09:56:00 2010 -0400

    Fix unused parameter warning in VS 7.1 generator
    
    The cmGlobalVisualStudio71Generator::WriteProjectDepends method no
    longer uses its 'dspname' parameter.  Leave off the name to avoid the
    unused parameter warning.  Later we should refactor the method to avoid
    passing the argument altogether.

diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index 4f5901c..1a5c940 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -197,7 +197,7 @@ cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout,
 void
 cmGlobalVisualStudio71Generator
 ::WriteProjectDepends(std::ostream& fout,
-                      const char* dspname,
+                      const char*,
                       const char*, cmTarget& target)
 {
   VSDependSet const& depends = this->VSTargetDepends[&target];

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

Summary of changes:
 Source/cmGlobalVisualStudio71Generator.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list