MyDeveloperDay added inline comments.
================ Comment at: clang/unittests/Format/FormatTest.cpp:9662 +TEST_F(FormatTest, AmpAmpOperator) { + verifyFormat("int operator()(T (&&)[N]) { return 1; }"); ---------------- curdeius wrote: > Nit: these are not &/&& operators but references so the test name seems > incorrect. oh yes sorry that was my bad so I could just run this one test through the debugger, I just needed a unique name, I should change that. ================ Comment at: clang/unittests/Format/FormatTest.cpp:21879 verifyFormat("Foo::operator&&();", Style); - verifyFormat("operator&&(int(&&)(), class Foo);", Style); + verifyFormat("operator&&(int (&&)(), class Foo);", Style); verifyFormat("operator const nsTArrayRight<E> &()", Style); ---------------- curdeius wrote: > MyDeveloperDay wrote: > > this test should be consistent with > > > > ``` > > verifyFormat("operator&(int (&)(), class Foo);", Style); > > ``` > Should we test > ``` > verifyFormat("operator&&(int (&)(), class Foo);", Style); > ``` > here, and > ``` > verifyFormat("operator&(int (&&)(), class Foo);", Style); > ``` > above as well? yes I'll add those, nice suggestion Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D114519/new/ https://reviews.llvm.org/D114519 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits