diff --git a/clang-tools-extra/clang-tidy/google/AvoidCStyleCastsCheck.h b/clang-tools-extra/clang-tidy/google/AvoidCStyleCastsCheck.h index aa98ad8cd1c2..ea7e34caa81f 100644 --- a/clang-tools-extra/clang-tidy/google/AvoidCStyleCastsCheck.h +++ b/clang-tools-extra/clang-tidy/google/AvoidCStyleCastsCheck.h @@ -19,7 +19,7 @@ namespace readability { /// Finds usages of C-style casts. /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Casting#Casting +/// https://google.github.io/styleguide/cppguide.html#Casting /// /// Corresponding cpplint.py check name: 'readability/casting'. /// diff --git a/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.h b/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.h index 2c074f1c6e69..81e667902fd0 100644 --- a/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.h +++ b/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.h @@ -18,7 +18,7 @@ namespace google { /// Checks that all single-argument constructors are explicit. /// -/// See http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Explicit_Constructors +/// See https://google.github.io/styleguide/cppguide.html#Explicit_Constructors class ExplicitConstructorCheck : public ClangTidyCheck { public: ExplicitConstructorCheck(StringRef Name, ClangTidyContext *Context) diff --git a/clang-tools-extra/clang-tidy/google/OverloadedUnaryAndCheck.h b/clang-tools-extra/clang-tidy/google/OverloadedUnaryAndCheck.h index 894fc719ccdb..5492eba21260 100644 --- a/clang-tools-extra/clang-tidy/google/OverloadedUnaryAndCheck.h +++ b/clang-tools-extra/clang-tidy/google/OverloadedUnaryAndCheck.h @@ -19,7 +19,7 @@ namespace runtime { /// Finds overloads of unary `operator &`. /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Operator_Overloading#Operator_Overloading +/// https://google.github.io/styleguide/cppguide.html#Operator_Overloading /// /// Corresponding cpplint.py check name: 'runtime/operator'. class OverloadedUnaryAndCheck : public ClangTidyCheck { diff --git a/clang-tools-extra/clang-tidy/google/UnnamedNamespaceInHeaderCheck.h b/clang-tools-extra/clang-tidy/google/UnnamedNamespaceInHeaderCheck.h index fec1365cef7f..4d310f570f93 100644 --- a/clang-tools-extra/clang-tidy/google/UnnamedNamespaceInHeaderCheck.h +++ b/clang-tools-extra/clang-tidy/google/UnnamedNamespaceInHeaderCheck.h @@ -27,7 +27,7 @@ namespace build { /// For extension-less header files, using an empty string or leaving an /// empty string between "," if there are other filename extensions. /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Namespaces#Namespaces +/// https://google.github.io/styleguide/cppguide.html#Namespaces /// /// Corresponding cpplint.py check name: 'build/namespaces'. class UnnamedNamespaceInHeaderCheck : public ClangTidyCheck { diff --git a/clang-tools-extra/clang-tidy/google/UsingNamespaceDirectiveCheck.h b/clang-tools-extra/clang-tidy/google/UsingNamespaceDirectiveCheck.h index b88a2d3cf36f..a36f3803b901 100644 --- a/clang-tools-extra/clang-tidy/google/UsingNamespaceDirectiveCheck.h +++ b/clang-tools-extra/clang-tidy/google/UsingNamespaceDirectiveCheck.h @@ -19,7 +19,7 @@ namespace build { /// Finds using namespace directives. /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Namespaces#Namespaces +/// https://google.github.io/styleguide/cppguide.html#Namespaces /// /// The check implements the following rule of the Google C++ Style Guide: /// diff --git a/clang-tools-extra/clang-tidy/readability/NamedParameterCheck.h b/clang-tools-extra/clang-tidy/readability/NamedParameterCheck.h index 3c22642aaec5..bd38ad2f56d5 100644 --- a/clang-tools-extra/clang-tidy/readability/NamedParameterCheck.h +++ b/clang-tools-extra/clang-tidy/readability/NamedParameterCheck.h @@ -21,7 +21,7 @@ namespace readability { /// The check implements the following rule originating in the Google C++ Style /// Guide: /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Function_Declarations_and_Definitions#Function_Declarations_and_Definitions +/// https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions /// /// All parameters should be named, with identical names in the declaration and /// implementation. diff --git a/clang-tools-extra/clang-tidy/readability/NamespaceCommentCheck.h b/clang-tools-extra/clang-tidy/readability/NamespaceCommentCheck.h index 1dd350e93410..87d97d5343fb 100644 --- a/clang-tools-extra/clang-tidy/readability/NamespaceCommentCheck.h +++ b/clang-tools-extra/clang-tidy/readability/NamespaceCommentCheck.h @@ -21,7 +21,7 @@ namespace readability { /// /// http://llvm.org/docs/CodingStandards.html#namespace-indentation /// -/// http://google-styleguide.googlecode.com/svn/trunk/cppguide.html#Namespaces +/// https://google.github.io/styleguide/cppguide.html#Namespaces class NamespaceCommentCheck : public ClangTidyCheck { public: NamespaceCommentCheck(StringRef Name, ClangTidyContext *Context); diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-build-namespaces.rst b/clang-tools-extra/docs/clang-tidy/checks/google-build-namespaces.rst index 68afeb95fb8b..a1477132960e 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-build-namespaces.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-build-namespaces.rst @@ -7,6 +7,6 @@ google-build-namespaces Finds anonymous namespaces in headers. -http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Namespaces#Namespaces +https://google.github.io/styleguide/cppguide.html#Namespaces Corresponding cpplint.py check name: 'build/namespaces'. diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-build-using-namespace.rst b/clang-tools-extra/docs/clang-tidy/checks/google-build-using-namespace.rst index 9beb858df14a..23b9b68a2df6 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-build-using-namespace.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-build-using-namespace.rst @@ -6,7 +6,7 @@ google-build-using-namespace Finds using namespace directives. -http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Namespaces#Namespaces +https://google.github.io/styleguide/cppguide.html#Namespaces The check implements the following rule of the Google C++ Style Guide: diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-explicit-constructor.rst b/clang-tools-extra/docs/clang-tidy/checks/google-explicit-constructor.rst index 4d6fb1040e27..8bd706d3f2cc 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-explicit-constructor.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-explicit-constructor.rst @@ -6,4 +6,4 @@ google-explicit-constructor Checks that all single-argument constructors are explicit. -See http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Explicit_Constructors +See https://google.github.io/styleguide/cppguide.html#Explicit_Constructors diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-readability-casting.rst b/clang-tools-extra/docs/clang-tidy/checks/google-readability-casting.rst index 7b1e08aaba53..af4d909edb07 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-readability-casting.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-readability-casting.rst @@ -6,7 +6,7 @@ google-readability-casting Finds usages of C-style casts. -http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Casting#Casting +https://google.github.io/styleguide/cppguide.html#Casting Corresponding cpplint.py check name: 'readability/casting'. diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-readability-namespace-comments.rst b/clang-tools-extra/docs/clang-tidy/checks/google-readability-namespace-comments.rst index 0bb5b20cb247..1b84ca9ac14d 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-readability-namespace-comments.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-readability-namespace-comments.rst @@ -8,4 +8,4 @@ Checks that long namespaces have a closing comment. http://llvm.org/docs/CodingStandards.html#namespace-indentation -http://google-styleguide.googlecode.com/svn/trunk/cppguide.html#Namespaces +https://google.github.io/styleguide/cppguide.html#Namespaces diff --git a/clang-tools-extra/docs/clang-tidy/checks/google-runtime-operator.rst b/clang-tools-extra/docs/clang-tidy/checks/google-runtime-operator.rst index 2906f0e3c6a4..5d4138e7bf64 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/google-runtime-operator.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/google-runtime-operator.rst @@ -6,6 +6,6 @@ google-runtime-operator Finds overloads of unary ``operator &``. -http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Operator_Overloading#Operator_Overloading +https://google.github.io/styleguide/cppguide.html#Operator_Overloading Corresponding cpplint.py check name: 'runtime/operator'. diff --git a/clang-tools-extra/docs/clang-tidy/checks/llvm-namespace-comment.rst b/clang-tools-extra/docs/clang-tidy/checks/llvm-namespace-comment.rst index ac44b0ca2bcb..72b3d2eb2f69 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/llvm-namespace-comment.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/llvm-namespace-comment.rst @@ -8,4 +8,4 @@ Checks that long namespaces have a closing comment. http://llvm.org/docs/CodingStandards.html#namespace-indentation -http://google-styleguide.googlecode.com/svn/trunk/cppguide.html#Namespaces +https://google.github.io/styleguide/cppguide.html#Namespaces diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-named-parameter.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-named-parameter.rst index 97c72de91c86..1e4f6f0eebb5 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-named-parameter.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-named-parameter.rst @@ -9,7 +9,7 @@ Find functions with unnamed arguments. The check implements the following rule originating in the Google C++ Style Guide: -http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=Function_Declarations_and_Definitions#Function_Declarations_and_Definitions +https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions All parameters should be named, with identical names in the declaration and implementation.