Skip to content

Commit ef3da14

Browse files
remove std::move
1 parent 3039a65 commit ef3da14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/buttonbig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ bool ButtonBigBase::OnEvent ( Event event ) {
4646
Component ButtonBig ( const ConstStringRef& label,
4747
const std::function<void() >& on_click,
4848
Ref<ButtonOption> option ) {
49-
return Make<ButtonBigBase> ( label, std::move ( on_click ), std::move ( option ) );
49+
return Make<ButtonBigBase> ( label, on_click, option );
5050
}

0 commit comments

Comments
 (0)