Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hadashiA committed Jun 16, 2024
1 parent 7825e9b commit ad4c9b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions VContainer.Standalone/VContainer.Standalone.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\VContainer\Assets\VContainer\Runtime\**\*.cs"
Expand Down
2 changes: 1 addition & 1 deletion VContainer/Assets/VContainer/Runtime/Internal/FreeList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class FreeList<T> where T : class
{
public bool IsDisposed => lastIndex == -2;

readonly object gate = new();
readonly object gate = new object();
T?[] values;
int lastIndex = -1;

Expand Down

0 comments on commit ad4c9b7

Please sign in to comment.