Skip to content

Commit

Permalink
Follow-Up: Rename tuple element to reflect the struct field name.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreisser committed Jul 1, 2024
1 parent a4bf776 commit b3d281c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Store.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit b3d281c

Please sign in to comment.