Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chaofan Chen
ogs
Commits
7affce22
Commit
7affce22
authored
9 years ago
by
Tom Fischer
Browse files
Options
Downloads
Plain Diff
Merge pull request #756 from norihiro-w/add-ignore-unmatched-TCLAP
[TCLAP] add ignoreUnmatched
parents
9380758b
2d888d5b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ThirdParty/tclap/CmdLine.h
+20
-2
20 additions, 2 deletions
ThirdParty/tclap/CmdLine.h
with
20 additions
and
2 deletions
ThirdParty/tclap/CmdLine.h
+
20
−
2
View file @
7affce22
...
@@ -183,6 +183,11 @@ private:
...
@@ -183,6 +183,11 @@ private:
*/
*/
bool
_helpAndVersion
;
bool
_helpAndVersion
;
/**
* Whether or not to ignore unmatched args.
*/
bool
_ignoreUnmatched
;
public:
public:
/**
/**
...
@@ -313,6 +318,13 @@ private:
...
@@ -313,6 +318,13 @@ private:
*/
*/
void
reset
();
void
reset
();
/**
* Allows unmatched args to be ignored. By default false.
*
* @param ignore If true the cmdline will ignore any unmatched args
* and if false it will behave as normal.
*/
void
ignoreUnmatched
(
const
bool
ignore
);
};
};
...
@@ -337,7 +349,8 @@ inline CmdLine::CmdLine(const std::string& m,
...
@@ -337,7 +349,8 @@ inline CmdLine::CmdLine(const std::string& m,
_output
(
0
),
_output
(
0
),
_handleExceptions
(
true
),
_handleExceptions
(
true
),
_userSetOutput
(
false
),
_userSetOutput
(
false
),
_helpAndVersion
(
help
)
_helpAndVersion
(
help
),
_ignoreUnmatched
(
false
)
{
{
_constructor
();
_constructor
();
}
}
...
@@ -470,7 +483,7 @@ inline void CmdLine::parse(std::vector<std::string>& args)
...
@@ -470,7 +483,7 @@ inline void CmdLine::parse(std::vector<std::string>& args)
if
(
!
matched
&&
_emptyCombined
(
args
[
i
]
)
)
if
(
!
matched
&&
_emptyCombined
(
args
[
i
]
)
)
matched
=
true
;
matched
=
true
;
if
(
!
matched
&&
!
Arg
::
ignoreRest
()
)
if
(
!
matched
&&
!
Arg
::
ignoreRest
()
&&
!
_ignoreUnmatched
)
throw
(
CmdLineParseException
(
"Couldn't find match "
throw
(
CmdLineParseException
(
"Couldn't find match "
"for argument"
,
"for argument"
,
args
[
i
]));
args
[
i
]));
...
@@ -623,6 +636,11 @@ inline void CmdLine::reset()
...
@@ -623,6 +636,11 @@ inline void CmdLine::reset()
_progName
.
clear
();
_progName
.
clear
();
}
}
inline
void
CmdLine
::
ignoreUnmatched
(
const
bool
ignore
)
{
_ignoreUnmatched
=
ignore
;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//End CmdLine.cpp
//End CmdLine.cpp
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment