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
473
473
really_inline bool is_array () const noexcept ;
474
474
really_inline bool is_object () const noexcept ;
475
475
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 ;
478
478
really_inline bool is_double () const noexcept ;
479
479
really_inline bool is_bool () const noexcept ;
480
480
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 {
80
80
really_inline bool simdjson_result<dom::element>::is_string() const noexcept {
81
81
return !error () && first.is_string ();
82
82
}
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 ();
85
85
}
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 ();
88
88
}
89
89
really_inline bool simdjson_result<dom::element>::is_double() const noexcept {
90
90
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) {
251
251
template <> bool cast_tester<object>::named_is(simdjson_result<element> element) { return element.is_object (); }
252
252
template <> bool cast_tester<const char *>::named_is(simdjson_result<element> element) { return element.is_string (); }
253
253
template <> 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 (); }
256
256
template <> bool cast_tester<double >::named_is(simdjson_result<element> element) { return element.is_double (); }
257
257
template <> bool cast_tester<bool >::named_is(simdjson_result<element> element) { return element.is_bool (); }
258
258
You can’t perform that action at this time.
0 commit comments