Skip to content

Commit

Permalink
move to 6.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Wsm2110 committed Jan 15, 2025
1 parent 1af877b commit 9b86acf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/DenseMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ public Vector128<sbyte> LoadAligned(ulong index)
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Vector128<sbyte> Load(ulong index)
{
return Vector128.Load((sbyte*)(_alignedPointer + index));
return Vector128.Load(_alignedPointer + index);
}

/// <summary>
Expand Down
6 changes: 3 additions & 3 deletions src/Faster.Map.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@

</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Wsm2110/Faster.Map</PackageProjectUrl>
<AssemblyVersion>6.1.3</AssemblyVersion>
<FileVersion>6.1.3</FileVersion>
<AssemblyVersion>6.1.4</AssemblyVersion>
<FileVersion>6.1.4</FileVersion>
<Title>Fastest .net hashmap</Title>
<Version>6.1.3</Version>
<Version>6.1.4</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>
Incredibly fast (concurrent) hashmap
Expand Down

0 comments on commit 9b86acf

Please sign in to comment.