Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
0552c402
Commit
0552c402
authored
Feb 26, 2002
by
Bill Hoffman
Browse files
BUG: fix type problem size_type is unsigned
parent
6ad590aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmCableClassSet.cxx
View file @
0552c402
...
...
@@ -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"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment