[Lldb-commits] [lldb] [lldb] Use std::none_of (NFC) (PR #143319)

2025-06-08 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/143319 None >From 1a40e7f3ec442feb3e79787504a290ded109422e Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sun, 8 Jun 2025 09:45:19 -0700 Subject: [PATCH] [lldb] Use std::none_of (NFC) --- lldb/source/Utilit

[Lldb-commits] [lldb] [lldb] Use std::none_of (NFC) (PR #143319)

2025-06-08 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/143319.diff 1 Files Affected: - (modified) lldb/source/Utility/Listener.cpp (+1-2) ``diff diff --git a/lldb/source/Utility/Listener

[Lldb-commits] [lldb] [lldb] Use std::none_of (NFC) (PR #143319)

2025-06-08 Thread Jonas Devlieghere via lldb-commits
https://github.com/JDevlieghere approved this pull request. https://github.com/llvm/llvm-project/pull/143319 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Use llvm::find (NFC) (PR #143338)

2025-06-08 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/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. >Fro

[Lldb-commits] [lldb] [lldb] Use llvm::find (NFC) (PR #143338)

2025-06-08 Thread via lldb-commits
llvmbot wrote: @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) Changes 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. ---

[Lldb-commits] [lldb] a14de0f - [lldb] Use std::none_of (NFC) (#143319)

2025-06-08 Thread via lldb-commits
Author: Kazu Hirata Date: 2025-06-08T16:18:30-07:00 New Revision: a14de0f810a0f026220d607a015b9dece9caf9ad URL: https://github.com/llvm/llvm-project/commit/a14de0f810a0f026220d607a015b9dece9caf9ad DIFF: https://github.com/llvm/llvm-project/commit/a14de0f810a0f026220d607a015b9dece9caf9ad.diff L

[Lldb-commits] [lldb] [lldb] Use std::none_of (NFC) (PR #143319)

2025-06-08 Thread Kazu Hirata via lldb-commits
https://github.com/kazutakahirata closed https://github.com/llvm/llvm-project/pull/143319 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits