aboutsummaryrefslogtreecommitdiff
path: root/base/runtime/dynamic_map_internal.odin
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-11-04 13:53:13 +0000
committerGitHub <noreply@github.com>2025-11-04 13:53:13 +0000
commite5153a937b95f4583dfac2c22d010a764bf2f1a8 (patch)
treec9dc3a80eeff8216f42d9760393e1753cf037820 /base/runtime/dynamic_map_internal.odin
parentfd995050dd80df6bea156ce59b594c8a6d1e677a (diff)
parent4bdce9bf0aba062d39e838bdf945bca5984f3c85 (diff)
Merge pull request #5859 from odin-lang/bill/change-licensedev-2025-11
Change Odin's LICENSE to zlib from BSD 3-clause
Diffstat (limited to 'base/runtime/dynamic_map_internal.odin')
-rw-r--r--base/runtime/dynamic_map_internal.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/runtime/dynamic_map_internal.odin b/base/runtime/dynamic_map_internal.odin
index e288d1f53..298b586f5 100644
--- a/base/runtime/dynamic_map_internal.odin
+++ b/base/runtime/dynamic_map_internal.odin
@@ -6,8 +6,6 @@ _ :: intrinsics
// High performance, cache-friendly, open-addressed Robin Hood hashing hash map
// data structure with various optimizations for Odin.
//
-// Copyright 2022 (c) Dale Weiler
-//
// The core of the hash map data structure is the Raw_Map struct which is a
// type-erased representation of the map. This type-erased representation is
// used in two ways: static and dynamic. When static type information is known,