From 01a45c9371b8863688a830fa9c43e9960c778df4 Mon Sep 17 00:00:00 2001 From: ESH Date: Mon, 9 Sep 2024 15:41:05 +0200 Subject: [PATCH] Make Dictionary.Entry protected. --- BeefLibs/corlib/src/Collections/Dictionary.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/Collections/Dictionary.bf b/BeefLibs/corlib/src/Collections/Dictionary.bf index 611b0033..58a46a04 100644 --- a/BeefLibs/corlib/src/Collections/Dictionary.bf +++ b/BeefLibs/corlib/src/Collections/Dictionary.bf @@ -38,7 +38,7 @@ namespace System.Collections typealias KeyValuePair=(TKey key, TValue value); typealias KeyRefValuePair=(TKey key, TValue* valueRef); - private struct Entry + protected struct Entry { public TKey mKey; // Key of entry public TValue mValue; // Value of entry