[all-commits] [llvm/llvm-project] df4b45: [lldb] Use llvm::find (NFC) (#143338)
Kazu Hirata via All-commits
all-commits at lists.llvm.org
Mon Jun 9 01:56:48 PDT 2025
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: df4b453516ebf9aa03c48c17e81112dce1c80f41
https://github.com/llvm/llvm-project/commit/df4b453516ebf9aa03c48c17e81112dce1c80f41
Author: Kazu Hirata <kazu at google.com>
Date: 2025-06-09 (Mon, 09 Jun 2025)
Changed paths:
M lldb/source/Breakpoint/WatchpointResource.cpp
M lldb/source/Expression/FunctionCaller.cpp
M lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
M lldb/source/Target/Process.cpp
Log Message:
-----------
[lldb] Use llvm::find (NFC) (#143338)
This patch should be mostly obvious, but in one place, this patch
changes:
const auto &it = std::find(...)
to:
auto it = llvm::find(...)
We do not need to bind to a temporary with const ref.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list