rymiel marked 2 inline comments as done.
rymiel added inline comments.
Comment at: clang/unittests/Format/FormatTest.cpp:4626-4627
+ verifyFormat(Code1, Style);
+ EXPECT_EQ(Code2, format(Code2, Style));
+ EXPECT_EQ(Code3, format(Code3, Style));
+
owenpan wrote
owenpan added inline comments.
Comment at: clang/unittests/Format/FormatTest.cpp:4626-4627
+ verifyFormat(Code1, Style);
+ EXPECT_EQ(Code2, format(Code2, Style));
+ EXPECT_EQ(Code3, format(Code3, Style));
+
We have `verifyNoChange` now. See D153109.
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7a38b3bfeb56: [clang-format] Respect ColumnLimit 0 line
breaks in inline asm (authored by rymiel).
Repository:
rG LLVM Github Monorepo
CHANGES SI