[Cmake-commits] CMake branch, next, updated. v3.4.0-rc2-1229-g7b24b3b
Brad King
brad.king at kitware.com
Mon Nov 2 16:06:04 EST 2015
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 7b24b3bb11baee969d6a8942f08c8f6fbe108f35 (commit)
via 683c4787ed58881343f8f776e04379dbaa6a21fd (commit)
from e105df31069d07cd3aa3da3d1671e89456194c72 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7b24b3bb11baee969d6a8942f08c8f6fbe108f35
commit 7b24b3bb11baee969d6a8942f08c8f6fbe108f35
Merge: e105df3 683c478
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 2 16:06:03 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Nov 2 16:06:03 2015 -0500
Merge topic 'vs-show-def-files' into next
683c4787 cmGeneratorTarget: Fix IMPLEMENT_VISIT_IMPL for template data types
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=683c4787ed58881343f8f776e04379dbaa6a21fd
commit 683c4787ed58881343f8f776e04379dbaa6a21fd
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Nov 2 16:02:59 2015 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Mon Nov 2 16:02:59 2015 -0500
cmGeneratorTarget: Fix IMPLEMENT_VISIT_IMPL for template data types
Update spacing near the DATATYPE reference to prevent construction
of `>>` as a preprocessing token if DATATYPE is a template type.
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 624ec9a..40afc0e 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -573,7 +573,7 @@ static void handleSystemIncludesDep(cmLocalGenerator *lg,
{ \
std::vector<cmSourceFile*> sourceFiles; \
this->GetSourceFiles(sourceFiles, config); \
- TagVisitor<DATA ## Tag DATATYPE> visitor(this, data); \
+ TagVisitor< DATA##Tag DATATYPE > visitor(this, data); \
for(std::vector<cmSourceFile*>::const_iterator si = sourceFiles.begin(); \
si != sourceFiles.end(); ++si) \
{ \
-----------------------------------------------------------------------
Summary of changes:
Source/cmGeneratorTarget.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list