mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
JSON: Made ::dump const, because it should be
This commit is contained in:
parent
8c36db1272
commit
965b7cfd3d
2 changed files with 12 additions and 12 deletions
12
src/JSON.cpp
12
src/JSON.cpp
|
@ -51,7 +51,7 @@ json::jtype json::value::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::value::dump ()
|
||||
std::string json::value::dump () const
|
||||
{
|
||||
return "<value>";
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ json::jtype json::string::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::string::dump ()
|
||||
std::string json::string::dump () const
|
||||
{
|
||||
return std::string ("\"") + _data + "\"";
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ json::jtype json::number::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::number::dump ()
|
||||
std::string json::number::dump () const
|
||||
{
|
||||
return format (_dvalue);
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ json::jtype json::literal::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::literal::dump ()
|
||||
std::string json::literal::dump () const
|
||||
{
|
||||
if (_lvalue == nullvalue) return "null";
|
||||
else if (_lvalue == falsevalue) return "false";
|
||||
|
@ -221,7 +221,7 @@ json::jtype json::array::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::array::dump ()
|
||||
std::string json::array::dump () const
|
||||
{
|
||||
std::string output;
|
||||
output += "[";
|
||||
|
@ -331,7 +331,7 @@ json::jtype json::object::type ()
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string json::object::dump ()
|
||||
std::string json::object::dump () const
|
||||
{
|
||||
std::string output;
|
||||
output += "{";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue