[clang-tools-extra] b082813 - clang-tidy doc: Fix the syntax to use rst list type
Sylvestre Ledru via cfe-commits
cfe-commits at lists.llvm.org
Sun May 10 02:26:08 PDT 2020
Author: Sylvestre Ledru
Date: 2020-05-10T11:25:20+02:00
New Revision: b0828135dbe3ee52a15163856008bcf05e81ccf8
URL: https://github.com/llvm/llvm-project/commit/b0828135dbe3ee52a15163856008bcf05e81ccf8
DIFF: https://github.com/llvm/llvm-project/commit/b0828135dbe3ee52a15163856008bcf05e81ccf8.diff
LOG: clang-tidy doc: Fix the syntax to use rst list type
Added:
Modified:
clang-tools-extra/docs/clang-tidy/checks/bugprone-reserved-identifier.rst
Removed:
################################################################################
diff --git a/clang-tools-extra/docs/clang-tidy/checks/bugprone-reserved-identifier.rst b/clang-tools-extra/docs/clang-tidy/checks/bugprone-reserved-identifier.rst
index 203b1f4df9c1..388acf87efc7 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/bugprone-reserved-identifier.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/bugprone-reserved-identifier.rst
@@ -8,8 +8,9 @@ bugprone-reserved-identifier
Checks for usages of identifiers reserved for use by the implementation.
The C and C++ standards both reserve the following names for such use:
-* identifiers that begin with an underscore followed by an uppercase letter;
-* identifiers in the global namespace that begin with an underscore.
+
+- identifiers that begin with an underscore followed by an uppercase letter;
+- identifiers in the global namespace that begin with an underscore.
The C standard additionally reserves names beginning with a double underscore,
while the C++ standard strengthens this to reserve names with a double
More information about the cfe-commits
mailing list