ruiu accepted this revision.
ruiu added a comment.

LGTM



================
Comment at: lib/Driver/Driver.cpp:1204
+                return X < 0;
+              return A.compare(B) > 0; });
 
----------------
I believe that if you use clang-format, `});` will be put to a separate line 
like this.

  std::sort(SuggestedCompletions.begin(), SuggestedCompletions.end(),
            [](StringRef A, StringRef B) {
              if (int X = A.compare_lower(B))
                return X < 0;
              return A.compare(B) > 0;
            });


https://reviews.llvm.org/D40234



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

Reply via email to