MyDeveloperDay added inline comments.
================ Comment at: clang/include/clang/Format/Format.h:2181 + /// \endcode + bool SpaceBeforePointerQualifiers; + ---------------- I wonder if a request would ever say they wanted this Space before to be Left/Middle/Right? perhaps this should not be a bool? ``` void* const *x; void * const *x; void *const *x; ``` ``` void* const *x; void * const *x; void *const *x; ``` ``` void* const * x; void * const * x; void *const * x; ``` ``` void* const* x; void * const* x; void *const* x; ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D88227/new/ https://reviews.llvm.org/D88227 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits