Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
14e46f99
Commit
14e46f99
authored
Oct 21, 2019
by
Oliver Heidmann
Browse files
fixed option --operators displaying wrong description lines
parent
e6ac07ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules.cc
View file @
14e46f99
...
...
@@ -650,7 +650,7 @@ get_operator_description(const std::string &p_current_op_name, const std::vector
line
=
help
.
at
(
++
operator_section
);
}
// if operator line found save description for later use
if
(
!
line
.
empty
()
&&
line
.
find
(
p_current_op_name
+
" "
)
!=
std
::
string
::
npos
)
if
(
!
line
.
empty
()
&&
line
.
find
(
" "
+
p_current_op_name
+
" "
)
!=
std
::
string
::
npos
)
{
auto
op_name_start
=
line
.
find_first_not_of
(
"
\t
"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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