[PATCH] D20095: [find-all-symbols] Slim SymbolInfo.

Benjamin Kramer via cfe-commits cfe-commits at lists.llvm.org
Tue May 10 06:54:06 PDT 2016


bkramer added inline comments.

================
Comment at: include-fixer/find-all-symbols/SymbolInfo.cpp:95
@@ -98,1 +94,3 @@
+  auto RHS = std::tie(Symbol.Name, Symbol.FilePath, Symbol.LineNumber);
+  return LHS != RHS ? LHS < RHS : Contexts < Symbol.Contexts;
 }
----------------
Does folding Contexts into the tie not work?


Repository:
  rL LLVM

http://reviews.llvm.org/D20095





More information about the cfe-commits mailing list