mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-31 05:47:18 +02:00
Parser
- Added disqualifier characters for UUID lists.
This commit is contained in:
parent
cb080e70de
commit
363baa34aa
1 changed files with 4 additions and 0 deletions
|
@ -1469,6 +1469,10 @@ void Parser::findUUIDList ()
|
||||||
if (! (*i)->hasTag ("?"))
|
if (! (*i)->hasTag ("?"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// Easy disqualifiers.
|
||||||
|
if (raw.find_first_not_of ("0123456789abcdefABCDEF-") != std::string::npos)
|
||||||
|
break;
|
||||||
|
|
||||||
Nibbler n (raw);
|
Nibbler n (raw);
|
||||||
std::vector <std::string> uuidList;
|
std::vector <std::string> uuidList;
|
||||||
std::string uuid;
|
std::string uuid;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue