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
fc6b8e8b
Commit
fc6b8e8b
authored
Mar 29, 2002
by
Bill Hoffman
Browse files
fix const problem
parent
dbdb0adc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmAddExecutableCommand.cxx
View file @
fc6b8e8b
...
...
@@ -27,7 +27,7 @@ bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& argsIn)
}
std
::
vector
<
std
::
string
>
args
;
cmSystemTools
::
ExpandListArguments
(
argsIn
,
args
);
std
::
vector
<
std
::
string
>::
const_
iterator
s
=
args
.
begin
();
std
::
vector
<
std
::
string
>::
iterator
s
=
args
.
begin
();
std
::
string
exename
=
*
s
;
...
...
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