Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Bloody mutable fields (dotnet#10116)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRansom authored and nosami committed Feb 22, 2021
1 parent 6079186 commit e457539
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fsharp/TypedTreePickle.fs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ type PickledDataWithReferences<'rawData> =
// Only fixup what needs fixing up
if reqd.IsUnresolvedReference then
match loader reqd.AssemblyName with
| Some loaded -> reqd.Fixup loaded
| Some loaded ->
if reqd.IsUnresolvedReference then reqd.Fixup loaded
| _ -> () )
x.RawData

Expand Down

0 comments on commit e457539

Please sign in to comment.