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
Tiger
nolimips
Commits
0bd00a44
Commit
0bd00a44
authored
Jul 01, 2003
by
Benoit Perrot
Browse files
* src/task/task_register.hh (parse_args): Do not search beyond
map's end.
parent
fc7eba2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0bd00a44
2003-07-29 Benot Perrot <benoit@lrde.epita.fr>
* src/task/task_register.hh (parse_args): Do not search beyond
map's end.
2003-07-28 Benot Perrot <benoit@lrde.epita.fr>
* NEWS: Describe main version changes.
...
...
src/task/task_register.cc
View file @
0bd00a44
...
...
@@ -131,7 +131,8 @@ namespace task
<<
arg
<<
"'"
<<
std
::
endl
;
continue
;
}
if
((
++
nit
)
->
first
.
find
(
arg
)
==
0
)
++
nit
;
if
(
nit
!=
_tasks
.
end
()
&&
nit
->
first
.
find
(
arg
)
==
0
)
{
std
::
cerr
<<
program_name
<<
": ambiguous option `"
<<
arg
<<
"'"
<<
std
::
endl
;
...
...
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