Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
CMake
CMake
Commits
1d1d874c
Commit
1d1d874c
authored
Jul 22, 2008
by
Bill Hoffman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMP: fix compiler warning and follow style
parent
a57fc558
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Source/cmLocalGenerator.cxx
Source/cmLocalGenerator.cxx
+3
-1
No files found.
Source/cmLocalGenerator.cxx
View file @
1d1d874c
...
...
@@ -2365,7 +2365,9 @@ cmLocalGenerator
// Avoid full paths by removing leading slashes.
std
::
string
::
size_type
pos
=
0
;
for
(;
pos
<
ssin
.
size
()
&&
ssin
[
pos
]
==
'/'
;
++
pos
);
for
(;
pos
<
ssin
.
size
()
&&
ssin
[
pos
]
==
'/'
;
++
pos
)
{
}
ssin
=
ssin
.
substr
(
pos
);
// Avoid full paths by removing colons.
...
...
Write
Preview
Markdown
is supported
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