This revision was automatically updated to reflect the committed changes. Closed by commit rG2928746ac3f1: [clang-tidy][doc] Remove unused variable (authored by bjosv, committed by carlosgalvezp).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D143996/new/ https://reviews.llvm.org/D143996 Files: clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst Index: clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst =================================================================== --- clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst +++ clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst @@ -32,7 +32,7 @@ char h = 0; }; -Variables: ``a``, ``c``, ``c_ptr1``, ``c_ptr2``, ``c_const_ptr`` and -``c_reference``, will all generate warnings since they are either: -a globally accessible variable and non-const, a pointer or reference providing -global access to non-const data or both. +The variables ``a``, ``c``, ``c_ptr1``, ``c_const_ptr`` and ``c_reference`` +will all generate warnings since they are either a non-const globally accessible +variable, a pointer or a reference providing global access to non-const data +or both.
Index: clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst =================================================================== --- clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst +++ clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/avoid-non-const-global-variables.rst @@ -32,7 +32,7 @@ char h = 0; }; -Variables: ``a``, ``c``, ``c_ptr1``, ``c_ptr2``, ``c_const_ptr`` and -``c_reference``, will all generate warnings since they are either: -a globally accessible variable and non-const, a pointer or reference providing -global access to non-const data or both. +The variables ``a``, ``c``, ``c_ptr1``, ``c_const_ptr`` and ``c_reference`` +will all generate warnings since they are either a non-const globally accessible +variable, a pointer or a reference providing global access to non-const data +or both.
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits