Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit bc28b67

Browse files
authored
[Impeller] Dat rvalue reference (fix engine head) (#45024)
Not sure why we didn't catch this on presubmits. I think there was a merge order problem.
1 parent 90d3893 commit bc28b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impeller/typographer/backends/stb/text_frame_stb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ TextFrame MakeTextFrameSTB(const std::shared_ptr<TypefaceSTB>& typeface_stb,
5353
}
5454

5555
TextFrame frame;
56-
frame.AddTextRun(run);
56+
frame.AddTextRun(std::move(run));
5757

5858
return frame;
5959
}

0 commit comments

Comments
 (0)