diff --git a/include/fast_io_core_impl/integers/sto/sto_contiguous.h b/include/fast_io_core_impl/integers/sto/sto_contiguous.h index c88fd871..aa69735e 100644 --- a/include/fast_io_core_impl/integers/sto/sto_contiguous.h +++ b/include/fast_io_core_impl/integers/sto/sto_contiguous.h @@ -1567,7 +1567,7 @@ inline constexpr parse_result scan_context_define_parse_impl( if constexpr (my_signed_integral) { auto phase_ret = sc_int_ctx_sign_phase(st, first, last); - if (phase_ret.code != ongoing_parse_code) + if (phase_ret.code != ongoing_parse_code) [[unlikely]] { return phase_ret; } @@ -1581,7 +1581,7 @@ inline constexpr parse_result scan_context_define_parse_impl( { st.integer_phase = scan_integral_context_phase::prefix; auto phase_ret = sc_int_ctx_prefix_phase(st.size, first, last); - if (phase_ret.code != ongoing_parse_code) + if (phase_ret.code != ongoing_parse_code) [[unlikely]] { return phase_ret; }