Skip to content

Commit

Permalink
Enable matching * for --with-using
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Apr 18, 2024
1 parent 71dbbea commit 83ca22b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6945,7 +6945,7 @@ private void WithUsings(NamedDecl namedDecl)
{
Debug.Assert(_outputBuilder is not null);

if (TryGetRemappedValue(namedDecl, _config.WithUsings, out var usings))
if (TryGetRemappedValue(namedDecl, _config.WithUsings, out var usings, matchStar: true))
{
foreach (var @using in usings)
{
Expand Down

0 comments on commit 83ca22b

Please sign in to comment.