mirror of
https://github.com/nlohmann/json.git
synced 2026-04-21 23:39:29 +00:00
+ more test cases
This commit is contained in:
@@ -285,7 +285,7 @@ JSON::~JSON() noexcept
|
||||
@param s a string representation of a JSON object
|
||||
@return a JSON object
|
||||
*/
|
||||
JSON JSON::parse(std::string& s)
|
||||
JSON JSON::parse(const std::string& s)
|
||||
{
|
||||
JSON j;
|
||||
Parser(s).parse(j);
|
||||
@@ -1892,7 +1892,7 @@ JSON::Parser::Parser(const char* s)
|
||||
/*!
|
||||
@copydoc JSON::Parser::Parser(const char* s)
|
||||
*/
|
||||
JSON::Parser::Parser(std::string& s)
|
||||
JSON::Parser::Parser(const std::string& s)
|
||||
: _length(s.length()), _buffer(new char[_length + 1])
|
||||
{
|
||||
std::strcpy(_buffer, s.c_str());
|
||||
|
||||
@@ -139,7 +139,7 @@ class JSON
|
||||
~JSON() noexcept;
|
||||
|
||||
/// create from string representation
|
||||
static JSON parse(std::string&);
|
||||
static JSON parse(const std::string&);
|
||||
/// create from string representation
|
||||
static JSON parse(const char*);
|
||||
|
||||
@@ -387,7 +387,7 @@ class JSON
|
||||
/// a parser reading from a C string
|
||||
Parser(const char*);
|
||||
/// a parser reading from a C++ string
|
||||
Parser(std::string&);
|
||||
Parser(const std::string&);
|
||||
/// a parser reading from an input stream
|
||||
Parser(std::istream&);
|
||||
/// destructor of the parser
|
||||
|
||||
Reference in New Issue
Block a user