[Lldb-commits] [PATCH] D142824: [lldb][NFC] Use move instead of copy

2023-02-01 Thread Michael Buch via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG6953dc95a976: [lldb][NFC] Use move instead of copy (authored by ccotter, committed by Michael137). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D142824/new/

[Lldb-commits] [PATCH] D142824: [lldb][NFC] Use move instead of copy

2023-02-01 Thread Chris Cotter via Phabricator via lldb-commits
ccotter added a comment. This should do: `Chris Cotter ` thanks Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D142824/new/ https://reviews.llvm.org/D142824 ___ lldb-commits mailing list lldb-commits@list

[Lldb-commits] [PATCH] D142824: [lldb][NFC] Use move instead of copy

2023-02-01 Thread Michael Buch via Phabricator via lldb-commits
Michael137 added a comment. In D142824#4095360 , @ccotter wrote: > Thanks! I don't have push access, so if you're good with this, could you > please land this for me? Sure, could you let me know which email and name you'd like me to use in the commit?

[Lldb-commits] [PATCH] D142824: [lldb][NFC] Use move instead of copy

2023-01-31 Thread Chris Cotter via Phabricator via lldb-commits
ccotter added a comment. Thanks! I don't have push access, so if you're good with this, could you please land this for me? Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D142824/new/ https://reviews.llvm.org/D142824

[Lldb-commits] [PATCH] D142824: [lldb][NFC] Use move instead of copy

2023-01-28 Thread Chris Cotter via Phabricator via lldb-commits
ccotter created this revision. Herald added a project: All. ccotter requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. For functions that accept an rvalue reference type parameter, use move to avoid copying the parameter. These were found whe