diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-26 13:56:42 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-26 13:56:42 (GMT) |
commit | 0552c4025d1776d9aebe1afcabfdac11b477cb8e (patch) | |
tree | 66f3cef3d8c6c460c94d18ee4173aecf9ad09b3c /Source | |
parent | 6ad590aad68434eb478ea4e0c0305fdde22bfc6b (diff) | |
download | CMake-0552c4025d1776d9aebe1afcabfdac11b477cb8e.zip CMake-0552c4025d1776d9aebe1afcabfdac11b477cb8e.tar.gz CMake-0552c4025d1776d9aebe1afcabfdac11b477cb8e.tar.bz2 |
BUG: fix type problem size_type is unsigned
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCableClassSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCableClassSet.cxx b/Source/cmCableClassSet.cxx index 9fb2f2b..47f8fa1 100644 --- a/Source/cmCableClassSet.cxx +++ b/Source/cmCableClassSet.cxx @@ -693,7 +693,7 @@ bool ElementCombinationGenerator::GenerateTag(const cmStdString& element) if(regex.find(element)) { m_Tag = "_"; - if(regex.start(1) > 0 && regex.match(1) == "long ") + if(static_cast<int>(regex.start(1)) > 0 && regex.match(1) == "long ") { m_Tag.append("l"); } |