From b3d281ccf502e2cd44be319e661fce185e73fa35 Mon Sep 17 00:00:00 2001 From: kpreisser Date: Mon, 1 Jul 2024 09:31:55 +0200 Subject: [PATCH] Follow-Up: Rename tuple element to reflect the struct field name. --- src/Store.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Store.cs b/src/Store.cs index 304561c..83749e5 100644 --- a/src/Store.cs +++ b/src/Store.cs @@ -340,7 +340,7 @@ private static class Native private static readonly Native.Finalizer Finalizer = (p) => GCHandle.FromIntPtr(p).Free(); - private readonly ConcurrentDictionary<(ExternKind kind, ulong store, nuint index), object> _externCache = new(); + private readonly ConcurrentDictionary<(ExternKind kind, ulong store, nuint __private), object> _externCache = new(); internal Function GetCachedExtern(ExternFunc @extern) {