[clang-tools-extra] Update http to https in clang-tidy check creation script. (PR #161326)
via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 30 00:14:16 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-tidy
Author: Julia Hansbrough (flowerhack)
<details>
<summary>Changes</summary>
We should be using https in URLs, so let's update add_new_check.py to reflect that.
---
Full diff: https://github.com/llvm/llvm-project/pull/161326.diff
1 Files Affected:
- (modified) clang-tools-extra/clang-tidy/add_new_check.py (+1-1)
``````````diff
diff --git a/clang-tools-extra/clang-tidy/add_new_check.py b/clang-tools-extra/clang-tidy/add_new_check.py
index 2b51a1dc40ebc..d99931e09b4b5 100755
--- a/clang-tools-extra/clang-tidy/add_new_check.py
+++ b/clang-tools-extra/clang-tidy/add_new_check.py
@@ -109,7 +109,7 @@ def write_header(
%(description)s
///
/// For the user-facing documentation see:
-/// http://clang.llvm.org/extra/clang-tidy/checks/%(module)s/%(check_name)s.html
+/// https://clang.llvm.org/extra/clang-tidy/checks/%(module)s/%(check_name)s.html
class %(check_name_camel)s : public ClangTidyCheck {
public:
%(check_name_camel)s(StringRef Name, ClangTidyContext *Context)
``````````
</details>
https://github.com/llvm/llvm-project/pull/161326
More information about the cfe-commits
mailing list