diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2011-05-26 18:42:41 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2011-05-26 18:50:07 (GMT) |
commit | 9c3a0b9f140f8503bb177c97aadab26fbdded197 (patch) | |
tree | 9c52f3591f9e0eb2e9f2ec98f0230ebeffa8e0e7 /Source/cmSystemTools.cxx | |
parent | 8024c53389df3ef404725e3d0c5d91a8f7eafbfc (diff) | |
download | CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.zip CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.tar.gz CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.tar.bz2 |
We will actually compress memcheck output if the server supports it.
This change won't be functional until the next release of CDash due to the
version comparison.
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 7bc89a4..db1ddce 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -2603,7 +2603,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 |