From 0552c4025d1776d9aebe1afcabfdac11b477cb8e Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 26 Feb 2002 08:56:42 -0500 Subject: BUG: fix type problem size_type is unsigned --- Source/cmCableClassSet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(regex.start(1)) > 0 && regex.match(1) == "long ") { m_Tag.append("l"); } -- cgit v0.12