[clang-tools-extra] 6b95787 - [clang-tidy][NFC] Fix links to fuchsia codding standard

Piotr Zegar via cfe-commits cfe-commits at lists.llvm.org
Sun Jul 23 05:40:22 PDT 2023


Author: Piotr Zegar
Date: 2023-07-23T12:29:32Z
New Revision: 6b95787acc5b2628a3d544c70cb0727a1975150d

URL: https://github.com/llvm/llvm-project/commit/6b95787acc5b2628a3d544c70cb0727a1975150d
DIFF: https://github.com/llvm/llvm-project/commit/6b95787acc5b2628a3d544c70cb0727a1975150d.diff

LOG: [clang-tidy][NFC] Fix links to fuchsia codding standard

Correct links to fuchsia codding standard in
documentation for fuchsia-* checks.

Partially fixes: #62334

Added: 
    

Modified: 
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-calls.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-declarations.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst
    clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.rst

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-calls.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-calls.rst
index bc33ed10d8b12e..e2b91c2be163ae 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-calls.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-calls.rst
@@ -19,4 +19,4 @@ Calling it without defaults will not cause a warning:
   foo();  // warning
   foo(0); // no warning
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-declarations.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-declarations.rst
index 774425e9867d0a..85e5de2b14bd79 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-declarations.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/default-arguments-declarations.rst
@@ -13,4 +13,4 @@ For example, the declaration:
 
 will cause a warning.
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.rst
index b52ec2be78b12f..2f6ed18e820288 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/multiple-inheritance.rst
@@ -43,4 +43,4 @@ A class that inherits from a pure virtual is allowed:
     virtual int bar() override { return 0; }
   };
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.rst
index 6cec0f828a1ec2..48d2940b99ef55 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/overloaded-operator.rst
@@ -15,4 +15,4 @@ For example:
   B &operator=(const B &Other);  // No warning
   B &operator=(B &&Other) // No warning
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst
index 17297fab70dd47..4696269e376553 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/statically-constructed-objects.rst
@@ -40,4 +40,4 @@ For example:
   extern int get_i();
   static C(get_i())   // Warning, as the constructor is dynamically initialized
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst
index e090a4fbfec663..361bf541fb16da 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/trailing-return.rst
@@ -32,4 +32,4 @@ Exceptions are made for lambdas and ``decltype`` specifiers:
   }
 
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en

diff  --git a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.rst b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.rst
index f73a49b2b051d7..2d01f7a0027daa 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/fuchsia/virtual-inheritance.rst
@@ -11,4 +11,4 @@ For example, classes should not be defined with virtual inheritance:
 
   class B : public virtual A {};   // warning
 
-See the features disallowed in Fuchsia at https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md
+See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en


        


More information about the cfe-commits mailing list