mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-21 07:43:08 +02:00
Lexer
- Renamed ::split to ::word_split, for clarity and because of the need for a full token split, coming next.
This commit is contained in:
parent
e753473dc4
commit
0af9bbdc03
5 changed files with 18 additions and 18 deletions
|
@ -619,7 +619,7 @@ bool Lexer::is_ws (int c)
|
|||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Split 'input' into 'words' on Lexer::is_ws boundaries, observing quotes.
|
||||
void Lexer::split (std::vector <std::string>& words, const std::string& input)
|
||||
void Lexer::word_split (std::vector <std::string>& words, const std::string& input)
|
||||
{
|
||||
words.clear ();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue