HazardyKnusperkeks added inline comments.
================ Comment at: clang/include/clang/Format/Format.h:3054 + enum SeparateDefinitionStyle { + /// Leave definition blocks separated as they are without changing anything + SDS_Leave, ---------------- Add full stop at the end of sentences. ================ Comment at: clang/lib/Format/DefinitionBlockSeparator.cpp:55 + auto insertReplacement = [&]() { + // Do not handle EOF newlines + assert(TargetToken); ---------------- Here also full stop, please. And following comments. ================ Comment at: clang/lib/Format/DefinitionBlockSeparator.h:38-39 +}; +} // end namespace format +} // end namespace clang + ---------------- I know you copied it. It is wrong where you copied it from. :) ================ Comment at: clang/lib/Format/Format.cpp:2114 + if (Result.add(R)) + return; + } ---------------- ksyx wrote: > HazardyKnusperkeks wrote: > > Why only add the first replacement? > This worked well as the `Error` class `add` method returned has overloaded > boolean operator, returning true (nonzero) when failing, which simulates > program exit code scheme? (ref: [[ > https://llvm.org/doxygen/classllvm_1_1Error.html#a981b4992a3b7cce718c7995a7d6193a0 > | Doxygen/Error/operator bool ]]) Okay, but maybe safe the result in `Error` to make it clearer. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D116314/new/ https://reviews.llvm.org/D116314 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits