forked from OSchip/llvm-project
Renaming CERT documentation files to use the CERT rule identifiers. This is for consistency with other checkers, where the documentation file name matches the checker name. NFC of the checkers.
llvm-svn: 256474
This commit is contained in:
parent
4b939405c5
commit
a6ab2efed2
|
@ -18,7 +18,7 @@ namespace tidy {
|
|||
/// Guards against use of setjmp/longjmp in C++ code
|
||||
///
|
||||
/// For the user-facing documentation see:
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-setlongjmp.html
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-err52-cpp.html
|
||||
class SetLongJmpCheck : public ClangTidyCheck {
|
||||
public:
|
||||
SetLongJmpCheck(StringRef Name, ClangTidyContext *Context)
|
||||
|
|
|
@ -19,7 +19,7 @@ namespace tidy {
|
|||
/// throw.
|
||||
///
|
||||
/// For the user-facing documentation see:
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-static-object-exception.html
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-err58-cpp.html
|
||||
class StaticObjectExceptionCheck : public ClangTidyCheck {
|
||||
public:
|
||||
StaticObjectExceptionCheck(StringRef Name, ClangTidyContext *Context)
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace tidy {
|
|||
/// Checks whether a thrown object is nothrow copy constructible.
|
||||
///
|
||||
/// For the user-facing documentation see:
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-thrown-exception-type.html
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-err60-cpp.html
|
||||
class ThrownExceptionTypeCheck : public ClangTidyCheck {
|
||||
public:
|
||||
ThrownExceptionTypeCheck(StringRef Name, ClangTidyContext *Context)
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace tidy {
|
|||
/// Guards against any C-style variadic function definitions (not declarations).
|
||||
///
|
||||
/// For the user-facing documentation see:
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-variadic-function-def.html
|
||||
/// http://clang.llvm.org/extra/clang-tidy/checks/cert-dcl50-cpp.html
|
||||
class VariadicFunctionDefCheck : public ClangTidyCheck {
|
||||
public:
|
||||
VariadicFunctionDefCheck(StringRef Name, ClangTidyContext *Context)
|
||||
|
|
|
@ -4,10 +4,10 @@ Clang-Tidy Checks
|
|||
=========================
|
||||
|
||||
.. toctree::
|
||||
cert-setlongjmp
|
||||
cert-static-object-exception
|
||||
cert-thrown-exception-type
|
||||
cert-variadic-function-def
|
||||
cert-dcl50-cpp
|
||||
cert-err52-cpp
|
||||
cert-err58-cpp
|
||||
cert-err60-cpp
|
||||
cppcoreguidelines-pro-bounds-array-to-pointer-decay
|
||||
cppcoreguidelines-pro-bounds-constant-array-index
|
||||
cppcoreguidelines-pro-bounds-pointer-arithmetic
|
||||
|
|
Loading…
Reference in New Issue