File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 3131 strategy :
3232 matrix :
3333 os :
34+ - " macos-13"
35+ - " macos-14"
3436 - " macos-15"
3537 - " ubuntu-22.04"
3638 - " ubuntu-24.04"
Original file line number Diff line number Diff line change @@ -51,10 +51,10 @@ void Token::append_context_to_logtype(
5151 if (reg_start_positions[j] < 0 ) {
5252 continue ;
5353 }
54- variable_positions.emplace_back (
55- static_cast <uint32_t >(reg_start_positions[j]),
56- static_cast <uint32_t >(reg_end_positions[j]),
57- capture_id
54+ variable_positions.push_back (
55+ { static_cast <uint32_t >(reg_start_positions[j]),
56+ static_cast <uint32_t >(reg_end_positions[j]),
57+ capture_id}
5858 );
5959 }
6060 }
@@ -64,7 +64,7 @@ void Token::append_context_to_logtype(
6464 variable_positions.end (),
6565 [](auto const & a, auto const & b) { return a.m_start_pos < b.m_start_pos ; }
6666 );
67- variable_positions.emplace_back ( m_end_pos, m_end_pos, 0 );
67+ variable_positions.push_back ({ m_end_pos, m_end_pos, 0 } );
6868
6969 uint32_t prev{m_start_pos};
7070 for (auto const & variable_position : variable_positions) {
You can’t perform that action at this time.
0 commit comments