From 1e58a1a478167e240a261441691401b788a18ce6 Mon Sep 17 00:00:00 2001 From: Julia Hansbrough Date: Tue, 30 Sep 2025 07:10:30 +0000 Subject: [PATCH] Update http to https in clang-tidy check creation script. We should be using https in URLs, so let's update add_new_check.py to reflect that. --- clang-tools-extra/clang-tidy/add_new_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)