diff options
author | Brad King <brad.king@kitware.com> | 2011-06-02 15:29:09 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-06-02 15:29:09 (GMT) |
commit | 3232136fc880a90488f867139a15c31513e6dfbf (patch) | |
tree | a51fc71745283b4d453fb1351fb316f4c28a21d1 /Source/cmSystemTools.cxx | |
parent | e164bb1e7601db22a25861ef9f54b2334572929d (diff) | |
parent | 0e591ed4c24cdcea2727f07eae1502700d10efb1 (diff) | |
download | CMake-3232136fc880a90488f867139a15c31513e6dfbf.zip CMake-3232136fc880a90488f867139a15c31513e6dfbf.tar.gz CMake-3232136fc880a90488f867139a15c31513e6dfbf.tar.bz2 |
Merge topic 'dont-compress-memcheck-output'
0e591ed Fix type conversion warning
9c3a0b9 We will actually compress memcheck output if the server supports it.
8024c53 Dynamic analysis test output should not be compressed.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index dc63568..c40e905 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -2689,7 +2689,7 @@ bool cmSystemTools::VersionCompare(cmSystemTools::CompareOp op, else if(lhs[i] > rhs[i]) { // lhs > rhs, so true if operation is GREATER - return op == cmSystemTools::OP_GREATER; + return op == cmSystemTools::OP_GREATER; } } // lhs == rhs, so true if operation is EQUAL |