summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2011-06-02 15:29:09 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-06-02 15:29:09 (GMT)
commit3232136fc880a90488f867139a15c31513e6dfbf (patch)
treea51fc71745283b4d453fb1351fb316f4c28a21d1 /Source/cmSystemTools.cxx
parente164bb1e7601db22a25861ef9f54b2334572929d (diff)
parent0e591ed4c24cdcea2727f07eae1502700d10efb1 (diff)
downloadCMake-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.cxx2
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