@@ -48,7 +48,7 @@ inline error_code document::skip() noexcept {
4848really_inline document::operator array () noexcept (false ) {
4949 return element (json);
5050}
51- really_inline document::operator object () noexcept (false ) {
51+ really_inline document::operator object () noexcept (false ) {
5252 return element (json);
5353}
5454really_inline document::operator raw_json_string () noexcept (false ) {
@@ -70,10 +70,10 @@ really_inline document::operator int64_t() noexcept(false) {
7070// return element(json);
7171// }
7272
73- inline array::iterator document::begin () noexcept (false ) {
73+ really_inline array::iterator document::begin () noexcept (false ) {
7474 return get_array ().begin ();
7575}
76- inline array::iterator document::end () noexcept (false ) {
76+ really_inline array::iterator document::end () noexcept (false ) {
7777 return get_array ().end ();
7878}
7979#endif // SIMDJSON_EXCEPTIONS
@@ -88,11 +88,11 @@ really_inline simdjson_result<stream::document>::simdjson_result(stream::documen
8888really_inline simdjson_result<stream::document>::simdjson_result(stream::document &&value, error_code error) noexcept
8989 : internal::simdjson_result_base<stream::document>(std::forward<stream::document>(value), error) {}
9090
91- really_inline simdjson_result<stream::array> simdjson_result<stream::document>::get_array() noexcept {
91+ really_inline simdjson_result<stream::array> simdjson_result<stream::document>::get_array() & noexcept {
9292 if (error ()) { return { first.json , error () }; }
9393 return first.get_array ();
9494}
95- really_inline simdjson_result<stream::object> simdjson_result<stream::document>::get_object() noexcept {
95+ really_inline simdjson_result<stream::object> simdjson_result<stream::document>::get_object() & noexcept {
9696 if (error ()) { return { first.json , error () }; }
9797 return first.get_object ();
9898}
@@ -147,10 +147,10 @@ really_inline simdjson_result<stream::document>::operator int64_t() noexcept(fal
147147// return get_bool();
148148// }
149149
150- inline stream::array::iterator simdjson_result<stream::document>::begin() noexcept (false ) {
150+ really_inline stream::array::iterator simdjson_result<stream::document>::begin() & noexcept (false ) {
151151 return get_array ().begin ();
152152}
153- inline stream::array::iterator simdjson_result<stream::document>::end() noexcept (false ) {
153+ really_inline stream::array::iterator simdjson_result<stream::document>::end() & noexcept (false ) {
154154 return get_array ().end ();
155155}
156156#endif // SIMDJSON_EXCEPTIONS
0 commit comments