File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ namespace altera {
20
20
// / kernels, which may be inefficient or cause an error.
21
21
// /
22
22
// / For the user-facing documentation see:
23
- // / http://clang.llvm.org/extra/clang-tidy/checks/opencl /single-work-item-barrier.html
23
+ // / http://clang.llvm.org/extra/clang-tidy/checks/altera /single-work-item-barrier.html
24
24
class SingleWorkItemBarrierCheck : public ClangTidyCheck {
25
25
const unsigned AOCVersion;
26
26
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace bugprone {
18
18
// / Catches assignments within the condition clause of an if statement.
19
19
// /
20
20
// / For the user-facing documentation see:
21
- // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone- assignment-in-if-condition.html
21
+ // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone/ assignment-in-if-condition.html
22
22
class AssignmentInIfConditionCheck : public ClangTidyCheck {
23
23
public:
24
24
AssignmentInIfConditionCheck (StringRef Name, ClangTidyContext *Context)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ namespace bugprone {
19
19
// / the base class.
20
20
// /
21
21
// / For the user-facing documentation see:
22
- // / http://clang.llvm.org/extra/clang-tidy/checks/misc /copy-constructor-init.html
22
+ // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone /copy-constructor-init.html
23
23
class CopyConstructorInitCheck : public ClangTidyCheck {
24
24
public:
25
25
CopyConstructorInitCheck (StringRef Name, ClangTidyContext *Context)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ namespace bugprone {
19
19
// / memory allocation function instead of its argument.
20
20
// /
21
21
// / For the user-facing documentation see:
22
- // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone/misplaced-operator -in-alloc.html
22
+ // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone/misplaced-pointer-arithmetic -in-alloc.html
23
23
class MisplacedPointerArithmeticInAllocCheck : public ClangTidyCheck {
24
24
public:
25
25
MisplacedPointerArithmeticInAllocCheck (StringRef Name,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ namespace bugprone {
21
21
// / Checker for signal handler functions.
22
22
// /
23
23
// / For the user-facing documentation see:
24
- // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone/signal-handler-check .html
24
+ // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone/signal-handler.html
25
25
class SignalHandlerCheck : public ClangTidyCheck {
26
26
public:
27
27
enum class AsyncSafeFunctionSetKind { Minimal, POSIX };
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace bugprone {
18
18
// / Finds instances where an integer is assigned to a string.
19
19
// /
20
20
// / For more details see:
21
- // / http://clang.llvm.org/extra/clang-tidy/checks/misc /string-assignment.html
21
+ // / http://clang.llvm.org/extra/clang-tidy/checks/bugprone /string-integer -assignment.html
22
22
class StringIntegerAssignmentCheck : public ClangTidyCheck {
23
23
public:
24
24
StringIntegerAssignmentCheck (StringRef Name, ClangTidyContext *Context)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ namespace cert {
22
22
// / constant expression is a security vulnerability.
23
23
// /
24
24
// / For the user-facing documentation see:
25
- // / http://clang.llvm.org/extra/clang-tidy/checks/cert/properly-seeded-random-generator .html
25
+ // / http://clang.llvm.org/extra/clang-tidy/checks/cert/msc51-cpp .html
26
26
class ProperlySeededRandomGeneratorCheck : public ClangTidyCheck {
27
27
public:
28
28
ProperlySeededRandomGeneratorCheck (StringRef Name, ClangTidyContext *Context);
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace concurrency {
18
18
// / Checks that non-thread-safe functions are not used.
19
19
// /
20
20
// / For the user-facing documentation see:
21
- // / http://clang.llvm.org/extra/clang-tidy/checks/threads /mt-unsafe.html
21
+ // / http://clang.llvm.org/extra/clang-tidy/checks/concurrency /mt-unsafe.html
22
22
class MtUnsafeCheck : public ClangTidyCheck {
23
23
public:
24
24
MtUnsafeCheck (StringRef Name, ClangTidyContext *Context);
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace fuchsia {
18
18
// / Default parameters are not allowed in declared functions.
19
19
// /
20
20
// / For the user-facing documentation see:
21
- // / http://clang.llvm.org/extra/clang-tidy/checks/fuchsia/default-parameters .html
21
+ // / http://clang.llvm.org/extra/clang-tidy/checks/fuchsia/default-arguments-declarations .html
22
22
class DefaultArgumentsDeclarationsCheck : public ClangTidyCheck {
23
23
public:
24
24
DefaultArgumentsDeclarationsCheck (StringRef Name, ClangTidyContext *Context)
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ namespace objc {
21
21
// / style guide.
22
22
// /
23
23
// / For the user-facing documentation see:
24
- // / http://clang.llvm.org/extra/clang-tidy/checks/google/avoid-nsobject-new.html
24
+ // / http://clang.llvm.org/extra/clang-tidy/checks/google/objc- avoid-nsobject-new.html
25
25
class AvoidNSObjectNewCheck : public ClangTidyCheck {
26
26
public:
27
27
AvoidNSObjectNewCheck (StringRef Name, ClangTidyContext *Context)
You can’t perform that action at this time.
0 commit comments