HazardyKnusperkeks added inline comments.

================
Comment at: clang/include/clang/Format/Format.h:2395
+  /// >0: Insert separators between digits, starting from the rightmost digit.
+  struct IntegerLiteralSeparatorStyle {
+    /// \code
----------------
Also add Octal?


================
Comment at: clang/include/clang/Format/Format.h:4121
            IndentWrappedFunctionNames == R.IndentWrappedFunctionNames &&
+           IntegerLiteralSeparator.Binary == R.IntegerLiteralSeparator.Binary 
&&
+           IntegerLiteralSeparator.Decimal ==
----------------
Below Insert, same above.


================
Comment at: clang/lib/Format/IntegerLiteralSeparatorFixer.cpp:20
+
+enum class Base { Binary, Decimal, Hex, Other };
+
----------------
Other is Octal.


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

https://reviews.llvm.org/D140543

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

Reply via email to