mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
Ensure more correct nullability
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user