diff options
author | Brad King <brad.king@kitware.com> | 2016-09-06 12:50:55 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-06 12:50:55 (GMT) |
commit | 19255a3516e230da77b18c051d89012bcabcd254 (patch) | |
tree | 45f7f57f5b84a5664a08d198b924b8ed2cb32707 /Tests/CMakeLib/testGeneratedFileStream.cxx | |
parent | eb226b366f40da2d284bb60d57c2d8bcb85de607 (diff) | |
parent | 1a9de8035c35cdb3e0501ce2cf2f816e4220bea0 (diff) | |
download | CMake-19255a3516e230da77b18c051d89012bcabcd254.zip CMake-19255a3516e230da77b18c051d89012bcabcd254.tar.gz CMake-19255a3516e230da77b18c051d89012bcabcd254.tar.bz2 |
Merge topic 'macro-parenthesis'
1a9de803 surround macro arguments with parentheses
Diffstat (limited to 'Tests/CMakeLib/testGeneratedFileStream.cxx')
-rw-r--r-- | Tests/CMakeLib/testGeneratedFileStream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLib/testGeneratedFileStream.cxx b/Tests/CMakeLib/testGeneratedFileStream.cxx index a31cc42..b419b9e 100644 --- a/Tests/CMakeLib/testGeneratedFileStream.cxx +++ b/Tests/CMakeLib/testGeneratedFileStream.cxx @@ -16,7 +16,7 @@ #include <string> #define cmFailed(m1, m2) \ - std::cout << "FAILED: " << m1 << m2 << "\n"; \ + std::cout << "FAILED: " << (m1) << (m2) << "\n"; \ failed = 1 int testGeneratedFileStream(int /*unused*/, char* /*unused*/ []) |