diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2021-08-23 15:58:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 15:58:54 +0200 |
commit | 583b6a594ab88208d1e78c94e70a2957c316cf64 (patch) | |
tree | 9aac8c191ebc808667dce8b18e61b60db66782c5 /core/templates | |
parent | 88db5417050ff6ffe97ab2716ab2e53c31b07eb4 (diff) | |
parent | ae1702bee5e8b3e6d4e31041b4a593826ac60484 (diff) |
Merge pull request #51971 from aaronfranke/https
Replace HTTP URLs with HTTPS for sites with HTTPS versions
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/map.h | 2 | ||||
-rw-r--r-- | core/templates/set.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/map.h b/core/templates/map.h index a47547d355..badb407e5d 100644 --- a/core/templates/map.h +++ b/core/templates/map.h @@ -36,7 +36,7 @@ #include "core/templates/pair.h" // based on the very nice implementation of rb-trees by: -// https://web.archive.org/web/20120507164830/http://web.mit.edu/~emin/www/source_code/red_black_tree/index.html +// https://web.archive.org/web/20120507164830/https://web.mit.edu/~emin/www/source_code/red_black_tree/index.html template <class K, class V, class C = Comparator<K>, class A = DefaultAllocator> class Map { diff --git a/core/templates/set.h b/core/templates/set.h index 9261d2d3d2..0a80ceefb5 100644 --- a/core/templates/set.h +++ b/core/templates/set.h @@ -35,7 +35,7 @@ #include "core/typedefs.h" // based on the very nice implementation of rb-trees by: -// https://web.archive.org/web/20120507164830/http://web.mit.edu/~emin/www/source_code/red_black_tree/index.html +// https://web.archive.org/web/20120507164830/https://web.mit.edu/~emin/www/source_code/red_black_tree/index.html template <class T, class C = Comparator<T>, class A = DefaultAllocator> class Set { |