Skip to content

Commit

Permalink
Merge pull request #216 from BrianWeed/patch-1
Browse files Browse the repository at this point in the history
Performance improvement
  • Loading branch information
jzmaddock committed Aug 24, 2024
2 parents dca0bdc + d4e7ac7 commit bd821cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/regex/v5/match_results.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ class match_results

void set_named_subs(std::shared_ptr<named_sub_type> subs)
{
m_named_subs = subs;
m_named_subs = std::move(subs);
}

private:
Expand Down

0 comments on commit bd821cd

Please sign in to comment.