MyDeveloperDay added a comment.

a new minor Nits but looks good.



================
Comment at: clang/lib/Format/ContinuationIndenter.cpp:1488
         (Style.ExperimentalAutoDetectBinPacking &&
-         (Current.PackingKind == PPK_OnePerLine ||
+         (Current.getPackingKind() == PPK_OnePerLine ||
           (!BinPackInconclusiveFunctions &&
----------------
Current.is(PPK_OnePerLine)


================
Comment at: clang/lib/Format/ContinuationIndenter.cpp:1490
           (!BinPackInconclusiveFunctions &&
-           Current.PackingKind == PPK_Inconclusive)));
+           Current.getPackingKind() == PPK_Inconclusive)));
 
----------------
Current.is(PPK_Inconclusive)


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D84306



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

Reply via email to