diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-05 20:09:49 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-05 20:09:49 (GMT) |
commit | 1a9de8035c35cdb3e0501ce2cf2f816e4220bea0 (patch) | |
tree | 8d2e7686145b5e03ddb5a0e181f9bb1b78dd47c7 /Source/cmDocumentation.cxx | |
parent | bfdf1322e7638687c96b323b1df20fd9c08b3044 (diff) | |
download | CMake-1a9de8035c35cdb3e0501ce2cf2f816e4220bea0.zip CMake-1a9de8035c35cdb3e0501ce2cf2f816e4220bea0.tar.gz CMake-1a9de8035c35cdb3e0501ce2cf2f816e4220bea0.tar.bz2 |
surround macro arguments with parentheses
Diffstat (limited to 'Source/cmDocumentation.cxx')
-rw-r--r-- | Source/cmDocumentation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentation.cxx b/Source/cmDocumentation.cxx index 13736b9..70612d1 100644 --- a/Source/cmDocumentation.cxx +++ b/Source/cmDocumentation.cxx @@ -166,7 +166,7 @@ bool cmDocumentation::PrintRequestedDocumentation(std::ostream& os) #define GET_OPT_ARGUMENT(target) \ if ((i + 1 < argc) && !this->IsOption(argv[i + 1])) { \ - target = argv[i + 1]; \ + (target) = argv[i + 1]; \ i = i + 1; \ }; |