diff options
author | Brad King <brad.king@kitware.com> | 2016-10-04 13:34:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-04 13:34:37 (GMT) |
commit | 5385817762e636ae27717891892786294749aee2 (patch) | |
tree | ba1efbaae788e75b4a177a034a432140e8d1efd0 /Source/cmCTest.cxx | |
parent | 834efe12bf6bf8059e545ac496eeb390c08e4220 (diff) | |
download | CMake-5385817762e636ae27717891892786294749aee2.zip CMake-5385817762e636ae27717891892786294749aee2.tar.gz CMake-5385817762e636ae27717891892786294749aee2.tar.bz2 |
Do not define cout/cerr preprocessor symbols
Apply the change from commit bd3d0eaf (cmCTest: don't redefine cout and
cerr, 2016-09-01) to the rest of ctest and cpack. These definitions
are no longer needed because our conventions are well established.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1824d94..7dc9e33 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2651,13 +2651,6 @@ static const char* cmCTestStringLogType[] = { "DEBUG", "ERROR_MESSAGE", CM_NULLPTR }; -#ifdef cerr -#undef cerr -#endif -#ifdef cout -#undef cout -#endif - #define cmCTestLogOutputFileLine(stream) \ if (this->ShowLineNumbers) { \ (stream) << std::endl << file << ":" << line << " "; \ |