[llvm] [LLVM][DWARF] Refactor code for generating DWARF V5 .debug_names acce… (PR #82264)

via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 19 23:52:13 PST 2024


================
@@ -1994,6 +1994,10 @@ auto unique(Range &&R, Predicate P) {
   return std::unique(adl_begin(R), adl_end(R), P);
 }
 
+template <typename Range> auto unique(Range &&R) {
+  return std::unique(adl_begin(R), adl_end(R));
+}
----------------
cmtice wrote:

Done, in the new PR (requested by dwblaikie): https://github.com/llvm/llvm-project/pull/82312


https://github.com/llvm/llvm-project/pull/82264


More information about the llvm-commits mailing list