[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1060-gb3db1dc
Brad King
brad.king at kitware.com
Mon Nov 26 13:21:36 EST 2012
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 b3db1dc86e71e938c296d8e309c2a457bedb0a86 (commit)
via 0cefeca6ce0565a605b1f331eec80636f5746a1d (commit)
from a2353607b06fccd3b0ea35e6ed578d4169e483fe (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=b3db1dc86e71e938c296d8e309c2a457bedb0a86
commit b3db1dc86e71e938c296d8e309c2a457bedb0a86
Merge: a235360 0cefeca
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 26 13:21:33 2012 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Nov 26 13:21:33 2012 -0500
Merge topic 'windows-ce' into next
0cefeca VS: Remove unused parameter name
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0cefeca6ce0565a605b1f331eec80636f5746a1d
commit 0cefeca6ce0565a605b1f331eec80636f5746a1d
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 26 13:20:23 2012 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Mon Nov 26 13:20:23 2012 -0500
VS: Remove unused parameter name
The parent commit added a parameter to a virtual method but
did not use it in all implementations. Drop the name from
the definitions where it is not used.
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index 94911c8..2494f55 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -277,7 +277,7 @@ void cmGlobalVisualStudio71Generator
// executables to the libraries it uses are also done here
void cmGlobalVisualStudio71Generator
::WriteProjectConfigurations(
- std::ostream& fout, const char* name, cmTarget::TargetType type,
+ std::ostream& fout, const char* name, cmTarget::TargetType,
const std::set<std::string>& configsPartOfDefaultBuild,
const char* platformMapping)
{
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index a7cf515..71d79a1 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -587,7 +587,7 @@ cmGlobalVisualStudio7Generator
// executables to the libraries it uses are also done here
void cmGlobalVisualStudio7Generator
::WriteProjectConfigurations(
- std::ostream& fout, const char* name, cmTarget::TargetType type,
+ std::ostream& fout, const char* name, cmTarget::TargetType,
const std::set<std::string>& configsPartOfDefaultBuild,
const char* platformMapping)
{
-----------------------------------------------------------------------
Summary of changes:
Source/cmGlobalVisualStudio71Generator.cxx | 2 +-
Source/cmGlobalVisualStudio7Generator.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list