MaskRay accepted this revision.
MaskRay added inline comments.

================
Comment at: clang/lib/Frontend/CompilerInvocation.cpp:886
+  llvm::sort(SortedConfigOpts, [](const auto &A, const auto &B) {
+    return std::get<0>(A) < std::get<0>(B);
+  });
----------------
If you use `pair` instead of `tuple`, you can use `llvm::less_first()`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D142861/new/

https://reviews.llvm.org/D142861

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to