mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-09 12:23:39 -04:00
changed the blankChar to the bell character instead of *
This commit is contained in:
parent
3e70af604d
commit
37c112ddab
@ -182,10 +182,9 @@ class Arg
|
||||
|
||||
/**
|
||||
* The char used as a place holder when SwitchArgs are combined.
|
||||
* Currently set to '*', which shouldn't cause many problems since
|
||||
* *'s are expanded by most shells on the command line.
|
||||
* Currently set to the bell char (ASCII 7).
|
||||
*/
|
||||
static const char blankChar() { return '*'; }
|
||||
static const char blankChar() { return (char)7; }
|
||||
|
||||
/**
|
||||
* The char that indicates the beginning of a flag. Currently '-'.
|
||||
|
@ -1,2 +1,2 @@
|
||||
my failure message:
|
||||
-*s -- Couldn't find match for argument
|
||||
-s -- Couldn't find match for argument
|
||||
|
Loading…
x
Reference in New Issue
Block a user