Ensure more correct nullability

This commit is contained in:
Matt Nadareski
2023-09-10 20:47:25 -04:00
parent 89ba5f4508
commit e3c5c76ee5
39 changed files with 84 additions and 84 deletions

View File

@@ -111,7 +111,7 @@ namespace SabreTools.Models.PortableExecutable
#if NET48
public COFFRelocation[] COFFRelocations;
#else
public COFFRelocation[]? COFFRelocations;
public COFFRelocation?[]? COFFRelocations;
#endif
/// <summary>
@@ -120,7 +120,7 @@ namespace SabreTools.Models.PortableExecutable
#if NET48
public COFFLineNumber[] COFFLineNumbers;
#else
public COFFLineNumber[]? COFFLineNumbers;
public COFFLineNumber?[]? COFFLineNumbers;
#endif
}
}