Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
3afc860e
Commit
3afc860e
authored
Oct 13, 2017
by
Uwe Schulzweida
Browse files
Merge declaration and initialization.
parent
7fa75fa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/process.cc
View file @
3afc860e
...
...
@@ -747,7 +747,6 @@ void
processDefArgument
(
void
*
vargument
)
{
process_t
&
process
=
processSelf
();
char
*
operatorArg
;
std
::
vector
<
char
*>
&
oargv
=
process
.
oargv
;
int
argc
=
((
argument_t
*
)
vargument
)
->
argc
;
std
::
vector
<
char
*>
&
argv
=
((
argument_t
*
)
vargument
)
->
argv
;
...
...
@@ -755,7 +754,7 @@ processDefArgument(void *vargument)
process
.
xoperator
=
argv
[
0
];
process
.
operatorName
=
getOperatorName
(
process
.
xoperator
);
process
.
operatorArg
=
getOperatorArg
(
process
.
xoperator
);
operatorArg
=
process
.
operatorArg
;
char
*
operatorArg
=
process
.
operatorArg
;
if
(
operatorArg
)
{
...
...
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