diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:09:23 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 11:09:23 +0000 |
| commit | f73363f1dd94996356cefbf24388f561891acf0b (patch) | |
| tree | e3c31248bdb36eaec5fd833490d4278162dba2a0 /source/Utility/JSON.cpp | |
| parent | 160ee69dd7ae18978f4068116777639ea98dc951 (diff) | |
Notes
Diffstat (limited to 'source/Utility/JSON.cpp')
| -rw-r--r-- | source/Utility/JSON.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/Utility/JSON.cpp b/source/Utility/JSON.cpp index 9049f596ab9a5..7d70034ccabd6 100644 --- a/source/Utility/JSON.cpp +++ b/source/Utility/JSON.cpp @@ -449,8 +449,7 @@ int JSONParser::GetEscapedChar(bool &was_escaped) { JSONValue::SP JSONParser::ParseJSONObject() { // The "JSONParser::Token::ObjectStart" token should have already been - // consumed - // by the time this function is called + // consumed by the time this function is called std::unique_ptr<JSONObject> dict_up(new JSONObject()); std::string value; @@ -481,8 +480,7 @@ JSONValue::SP JSONParser::ParseJSONObject() { JSONValue::SP JSONParser::ParseJSONArray() { // The "JSONParser::Token::ObjectStart" token should have already been - // consumed - // by the time this function is called + // consumed by the time this function is called std::unique_ptr<JSONArray> array_up(new JSONArray()); std::string value; |
