mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 19:17:19 +02:00
Nibbler: Remove unused function argument
This commit is contained in:
parent
0961a011f4
commit
96ca7eb5f2
4 changed files with 11 additions and 29 deletions
|
@ -66,7 +66,7 @@ json::string::string (const std::string& other)
|
|||
json::string* json::string::parse (Nibbler& nibbler)
|
||||
{
|
||||
std::string value;
|
||||
if (nibbler.getQuoted ('"', value, false))
|
||||
if (nibbler.getQuoted ('"', value))
|
||||
{
|
||||
json::string* s = new json::string ();
|
||||
s->_data = value;
|
||||
|
@ -303,7 +303,7 @@ bool json::object::parse_pair (
|
|||
{
|
||||
Nibbler n (nibbler);
|
||||
|
||||
if (n.getQuoted ('"', name, false))
|
||||
if (n.getQuoted ('"', name))
|
||||
{
|
||||
n.skipWS ();
|
||||
if (n.skip (':'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue