summaryrefslogtreecommitdiff
path: root/core/templates
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-08-21 20:56:25 -0500
committerAaron Franke <arnfranke@yahoo.com>2021-08-22 20:13:11 -0500
commitae1702bee5e8b3e6d4e31041b4a593826ac60484 (patch)
tree6de1242c9c265d038d91651b61d9c2c71550de7a /core/templates
parentbb1c930a418c153eac7e9e85dcab023bb723dd7e (diff)
Replace HTTP links with HTTPS for sites with HTTPS versions
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/map.h2
-rw-r--r--core/templates/set.h2
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 {