Commit 34cf7b7a by chenguoping

just restart ci

parent e07686f0
...@@ -337,7 +337,7 @@ class json_pointer ...@@ -337,7 +337,7 @@ class json_pointer
"' must not begin with '0'")); "' must not begin with '0'"));
} }
// error condition (cf. RFC 6901, Sect. 4 & Sect. 7) // error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(s.size() > 1 and not (s[0] >= '1' and s[0] <= '9'))) if (JSON_HEDLEY_UNLIKELY(s.size() > 1 and not (s[0] >= '1' and s[0] <= '9')))
{ {
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number"));
......
...@@ -10411,7 +10411,7 @@ class json_pointer ...@@ -10411,7 +10411,7 @@ class json_pointer
"' must not begin with '0'")); "' must not begin with '0'"));
} }
// error condition (cf. RFC 6901, Sect. 4 & Sect. 7) // error condition (cf. RFC 6901, Sect. 4)
if (JSON_HEDLEY_UNLIKELY(s.size() > 1 and not (s[0] >= '1' and s[0] <= '9'))) if (JSON_HEDLEY_UNLIKELY(s.size() > 1 and not (s[0] >= '1' and s[0] <= '9')))
{ {
JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number")); JSON_THROW(detail::parse_error::create(109, 0, "array index '" + s + "' is not a number"));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment