Skip to content

Commit

Permalink
Remove ignored names input
Browse files Browse the repository at this point in the history
  • Loading branch information
lithiumtoast committed Jan 27, 2025
1 parent 3d0fa9d commit 5466201
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ public class InputSanitized

public ImmutableDictionary<string, string> MappedNames { get; init; } = ImmutableDictionary<string, string>.Empty;

public ImmutableArray<string> IgnoredNames { get; init; } = ImmutableArray<string>.Empty;

public bool IsEnabledGenerateCSharpRuntimeCode { get; init; }

public bool IsEnabledFunctionPointers { get; init; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public override InputSanitized Sanitize(InputUnsanitized unsanitizedInput)
CodeRegionHeader = HeaderCodeRegion(unsanitizedInput.HeaderCodeRegionFilePath),
CodeRegionFooter = FooterCodeRegion(unsanitizedInput.FooterCodeRegionFilePath),
MappedNames = MappedNames(unsanitizedInput.MappedNames),
IgnoredNames = IgnoredNames(unsanitizedInput.IgnoredNames),
IsEnabledGenerateCSharpRuntimeCode = unsanitizedInput.IsEnabledGeneratingRuntimeCode ?? true,
IsEnabledFunctionPointers = IsEnabledFunctionPointers(unsanitizedInput, targetFramework),
IsEnabledRuntimeMarshalling = IsEnabledRuntimeMarshalling(unsanitizedInput, targetFramework),
Expand Down

0 comments on commit 5466201

Please sign in to comment.