owenpan added inline comments.
================ Comment at: clang/docs/ReleaseNotes.rst:830 +- Add ``SpacesInParens`` style with ``SpacesInParensOptions`` to replace + ``SpacesInConditionalStatement``, ``SpacesInCStyleCastParentheses``, + ``SpaceInEmptyParentheses``, and ``SpacesInParentheses``. ---------------- ================ Comment at: clang/include/clang/Format/Format.h:4245 + SpacesInParensCustom(bool InConditionalStatements, bool InCStyleCasts, + bool InEmptyParentheses, bool Other) + : InConditionalStatements(InConditionalStatements), ---------------- ================ Comment at: clang/include/clang/Format/Format.h:4247-4248 + : InConditionalStatements(InConditionalStatements), + InCStyleCasts(InCStyleCasts), + InEmptyParentheses(InEmptyParentheses), + Other(Other) {} ---------------- ================ Comment at: clang/include/clang/Format/Format.h:4254-4255 + InCStyleCasts == R.InCStyleCasts && + InEmptyParentheses == R.InEmptyParentheses && + Other == R.Other; + } ---------------- Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D155239/new/ https://reviews.llvm.org/D155239 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits