[Lldb-commits] [PATCH] D159313: [lldb][NFCI] Remove use of ConstString in StructuredData
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 14 10:23:20 PDT 2023
bulbazord added inline comments.
================
Comment at: lldb/source/Utility/StructuredData.cpp:249-251
+ llvm::sort(sorted_entries, [&](const Entry &lhs, const Entry &rhs) -> bool {
+ return lhs.first < rhs.first;
+ });
----------------
Oh I can remove this lambda too -- Let me update.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D159313/new/
https://reviews.llvm.org/D159313
More information about the lldb-commits
mailing list