omtcyf0 created this revision.
omtcyf0 added reviewers: cfe-commits, alexfh.

Because of the recent Google Code shutdown links to the Google Code Style up 
there are no longer relevant.

http://reviews.llvm.org/D17602

Files:
  clang-tidy/google/AvoidCStyleCastsCheck.h
  clang-tidy/google/ExplicitConstructorCheck.h
  clang-tidy/google/OverloadedUnaryAndCheck.h
  clang-tidy/google/UnnamedNamespaceInHeaderCheck.h
  clang-tidy/google/UsingNamespaceDirectiveCheck.h
  clang-tidy/readability/NamedParameterCheck.h
  clang-tidy/readability/NamespaceCommentCheck.h
  docs/clang-tidy/checks/google-build-namespaces.rst
  docs/clang-tidy/checks/google-build-using-namespace.rst
  docs/clang-tidy/checks/google-explicit-constructor.rst
  docs/clang-tidy/checks/google-readability-casting.rst
  docs/clang-tidy/checks/google-readability-namespace-comments.rst
  docs/clang-tidy/checks/google-runtime-operator.rst
  docs/clang-tidy/checks/llvm-namespace-comment.rst
  docs/clang-tidy/checks/readability-named-parameter.rst

Index: docs/clang-tidy/checks/readability-named-parameter.rst
===================================================================
--- docs/clang-tidy/checks/readability-named-parameter.rst
+++ docs/clang-tidy/checks/readability-named-parameter.rst
@@ -9,7 +9,8 @@
 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.
Index: docs/clang-tidy/checks/llvm-namespace-comment.rst
===================================================================
--- docs/clang-tidy/checks/llvm-namespace-comment.rst
+++ docs/clang-tidy/checks/llvm-namespace-comment.rst
@@ -8,4 +8,4 @@
 
 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
Index: docs/clang-tidy/checks/google-runtime-operator.rst
===================================================================
--- docs/clang-tidy/checks/google-runtime-operator.rst
+++ docs/clang-tidy/checks/google-runtime-operator.rst
@@ -6,6 +6,6 @@
 
 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'.
Index: docs/clang-tidy/checks/google-readability-namespace-comments.rst
===================================================================
--- docs/clang-tidy/checks/google-readability-namespace-comments.rst
+++ docs/clang-tidy/checks/google-readability-namespace-comments.rst
@@ -8,4 +8,4 @@
 
 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
Index: docs/clang-tidy/checks/google-readability-casting.rst
===================================================================
--- docs/clang-tidy/checks/google-readability-casting.rst
+++ docs/clang-tidy/checks/google-readability-casting.rst
@@ -6,7 +6,7 @@
 
 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'.
 
Index: docs/clang-tidy/checks/google-explicit-constructor.rst
===================================================================
--- docs/clang-tidy/checks/google-explicit-constructor.rst
+++ docs/clang-tidy/checks/google-explicit-constructor.rst
@@ -6,4 +6,4 @@
 
 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
Index: docs/clang-tidy/checks/google-build-using-namespace.rst
===================================================================
--- docs/clang-tidy/checks/google-build-using-namespace.rst
+++ docs/clang-tidy/checks/google-build-using-namespace.rst
@@ -6,7 +6,7 @@
 
 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:
 
Index: docs/clang-tidy/checks/google-build-namespaces.rst
===================================================================
--- docs/clang-tidy/checks/google-build-namespaces.rst
+++ docs/clang-tidy/checks/google-build-namespaces.rst
@@ -7,6 +7,6 @@
 
 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'.
Index: clang-tidy/readability/NamespaceCommentCheck.h
===================================================================
--- clang-tidy/readability/NamespaceCommentCheck.h
+++ clang-tidy/readability/NamespaceCommentCheck.h
@@ -21,7 +21,7 @@
 ///
 /// 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);
Index: clang-tidy/readability/NamedParameterCheck.h
===================================================================
--- clang-tidy/readability/NamedParameterCheck.h
+++ clang-tidy/readability/NamedParameterCheck.h
@@ -21,7 +21,7 @@
 /// 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.
Index: clang-tidy/google/UsingNamespaceDirectiveCheck.h
===================================================================
--- clang-tidy/google/UsingNamespaceDirectiveCheck.h
+++ clang-tidy/google/UsingNamespaceDirectiveCheck.h
@@ -19,7 +19,7 @@
 
 /// 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:
 ///
Index: clang-tidy/google/UnnamedNamespaceInHeaderCheck.h
===================================================================
--- clang-tidy/google/UnnamedNamespaceInHeaderCheck.h
+++ clang-tidy/google/UnnamedNamespaceInHeaderCheck.h
@@ -27,7 +27,7 @@
 ///     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 {
Index: clang-tidy/google/OverloadedUnaryAndCheck.h
===================================================================
--- clang-tidy/google/OverloadedUnaryAndCheck.h
+++ clang-tidy/google/OverloadedUnaryAndCheck.h
@@ -19,7 +19,7 @@
 
 /// 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 {
Index: clang-tidy/google/ExplicitConstructorCheck.h
===================================================================
--- clang-tidy/google/ExplicitConstructorCheck.h
+++ clang-tidy/google/ExplicitConstructorCheck.h
@@ -18,7 +18,7 @@
 
 /// 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)
Index: clang-tidy/google/AvoidCStyleCastsCheck.h
===================================================================
--- clang-tidy/google/AvoidCStyleCastsCheck.h
+++ clang-tidy/google/AvoidCStyleCastsCheck.h
@@ -19,7 +19,7 @@
 
 /// 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'.
 ///
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to