Skip to content

Commit 8d9828e

Browse files
committed
[clang-tidy] Fix all broken links in the comment.
1 parent c40697a commit 8d9828e

15 files changed

+15
-15
lines changed

clang-tools-extra/clang-tidy/altera/SingleWorkItemBarrierCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace altera {
2020
/// kernels, which may be inefficient or cause an error.
2121
///
2222
/// 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
2424
class SingleWorkItemBarrierCheck : public ClangTidyCheck {
2525
const unsigned AOCVersion;
2626

clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace bugprone {
1818
/// Catches assignments within the condition clause of an if statement.
1919
///
2020
/// 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
2222
class AssignmentInIfConditionCheck : public ClangTidyCheck {
2323
public:
2424
AssignmentInIfConditionCheck(StringRef Name, ClangTidyContext *Context)

clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace bugprone {
1919
/// the base class.
2020
///
2121
/// 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
2323
class CopyConstructorInitCheck : public ClangTidyCheck {
2424
public:
2525
CopyConstructorInitCheck(StringRef Name, ClangTidyContext *Context)

clang-tools-extra/clang-tidy/bugprone/MisplacedPointerArithmeticInAllocCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace bugprone {
1919
/// memory allocation function instead of its argument.
2020
///
2121
/// 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
2323
class MisplacedPointerArithmeticInAllocCheck : public ClangTidyCheck {
2424
public:
2525
MisplacedPointerArithmeticInAllocCheck(StringRef Name,

clang-tools-extra/clang-tidy/bugprone/SignalHandlerCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace bugprone {
2121
/// Checker for signal handler functions.
2222
///
2323
/// 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
2525
class SignalHandlerCheck : public ClangTidyCheck {
2626
public:
2727
enum class AsyncSafeFunctionSetKind { Minimal, POSIX };

clang-tools-extra/clang-tidy/bugprone/StringIntegerAssignmentCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace bugprone {
1818
/// Finds instances where an integer is assigned to a string.
1919
///
2020
/// 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
2222
class StringIntegerAssignmentCheck : public ClangTidyCheck {
2323
public:
2424
StringIntegerAssignmentCheck(StringRef Name, ClangTidyContext *Context)

clang-tools-extra/clang-tidy/cert/ProperlySeededRandomGeneratorCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace cert {
2222
/// constant expression is a security vulnerability.
2323
///
2424
/// 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
2626
class ProperlySeededRandomGeneratorCheck : public ClangTidyCheck {
2727
public:
2828
ProperlySeededRandomGeneratorCheck(StringRef Name, ClangTidyContext *Context);

clang-tools-extra/clang-tidy/concurrency/MtUnsafeCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace concurrency {
1818
/// Checks that non-thread-safe functions are not used.
1919
///
2020
/// 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
2222
class MtUnsafeCheck : public ClangTidyCheck {
2323
public:
2424
MtUnsafeCheck(StringRef Name, ClangTidyContext *Context);

clang-tools-extra/clang-tidy/fuchsia/DefaultArgumentsDeclarationsCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace fuchsia {
1818
/// Default parameters are not allowed in declared functions.
1919
///
2020
/// 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
2222
class DefaultArgumentsDeclarationsCheck : public ClangTidyCheck {
2323
public:
2424
DefaultArgumentsDeclarationsCheck(StringRef Name, ClangTidyContext *Context)

clang-tools-extra/clang-tidy/google/AvoidNSObjectNewCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace objc {
2121
/// style guide.
2222
///
2323
/// 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
2525
class AvoidNSObjectNewCheck : public ClangTidyCheck {
2626
public:
2727
AvoidNSObjectNewCheck(StringRef Name, ClangTidyContext *Context)

0 commit comments

Comments
 (0)