File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -473,8 +473,8 @@ struct simdjson_result<dom::element> : public internal::simdjson_result_base<dom
473473 really_inline bool is_array () const noexcept ;
474474 really_inline bool is_object () const noexcept ;
475475 really_inline bool is_string () const noexcept ;
476- really_inline bool is_int64_t () const noexcept ;
477- really_inline bool is_uint64_t () const noexcept ;
476+ really_inline bool is_int64 () const noexcept ;
477+ really_inline bool is_uint64 () const noexcept ;
478478 really_inline bool is_double () const noexcept ;
479479 really_inline bool is_bool () const noexcept ;
480480 really_inline bool is_null () const noexcept ;
Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ really_inline bool simdjson_result<dom::element>::is_object() const noexcept {
8080really_inline bool simdjson_result<dom::element>::is_string() const noexcept {
8181 return !error () && first.is_string ();
8282}
83- really_inline bool simdjson_result<dom::element>::is_int64_t () const noexcept {
84- return !error () && first.is_int64_t ();
83+ really_inline bool simdjson_result<dom::element>::is_int64 () const noexcept {
84+ return !error () && first.is_int64 ();
8585}
86- really_inline bool simdjson_result<dom::element>::is_uint64_t () const noexcept {
87- return !error () && first.is_uint64_t ();
86+ really_inline bool simdjson_result<dom::element>::is_uint64 () const noexcept {
87+ return !error () && first.is_uint64 ();
8888}
8989really_inline bool simdjson_result<dom::element>::is_double() const noexcept {
9090 return !error () && first.is_double ();
Original file line number Diff line number Diff line change @@ -251,8 +251,8 @@ template<> bool cast_tester<array>::named_is(simdjson_result<element> element) {
251251template <> bool cast_tester<object>::named_is(simdjson_result<element> element) { return element.is_object (); }
252252template <> bool cast_tester<const char *>::named_is(simdjson_result<element> element) { return element.is_string (); }
253253template <> bool cast_tester<std::string_view>::named_is(simdjson_result<element> element) { return element.is_string (); }
254- template <> bool cast_tester<uint64_t >::named_is(simdjson_result<element> element) { return element.is_uint64_t (); }
255- template <> bool cast_tester<int64_t >::named_is(simdjson_result<element> element) { return element.is_int64_t (); }
254+ template <> bool cast_tester<uint64_t >::named_is(simdjson_result<element> element) { return element.is_uint64 (); }
255+ template <> bool cast_tester<int64_t >::named_is(simdjson_result<element> element) { return element.is_int64 (); }
256256template <> bool cast_tester<double >::named_is(simdjson_result<element> element) { return element.is_double (); }
257257template <> bool cast_tester<bool >::named_is(simdjson_result<element> element) { return element.is_bool (); }
258258
You can’t perform that action at this time.
0 commit comments