aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkhf.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkhf.pl')
-rwxr-xr-xtools/checkhf.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkhf.pl b/tools/checkhf.pl
index 45f01bb57d..7e01c7e582 100755
--- a/tools/checkhf.pl
+++ b/tools/checkhf.pl
@@ -244,7 +244,7 @@ sub remove_comments {
my ($code_ref, $filename) = @_;
# The below Regexp is based on one from:
- # http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/59811
+ # https://web.archive.org/web/20080614012925/http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/59811
# It is in the public domain.
# A complicated regex which matches C-style comments.
my $c_comment_regex = qr{ / [*] [^*]* [*]+ (?: [^/*] [^*]* [*]+ )* / }xmso;