Skip to content

Commit

Permalink
[Impeller] Dat rvalue reference (fix engine head) (flutter#45024)
Browse files Browse the repository at this point in the history
Not sure why we didn't catch this on presubmits. I think there was a
merge order problem.
  • Loading branch information
bdero authored Aug 23, 2023
1 parent 90d3893 commit bc28b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impeller/typographer/backends/stb/text_frame_stb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ TextFrame MakeTextFrameSTB(const std::shared_ptr<TypefaceSTB>& typeface_stb,
}

TextFrame frame;
frame.AddTextRun(run);
frame.AddTextRun(std::move(run));

return frame;
}
Expand Down

0 comments on commit bc28b67

Please sign in to comment.