Skip to content

Commit 83ca22b

Browse files
committed
Enable matching * for --with-using
1 parent 71dbbea commit 83ca22b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/ClangSharp.PInvokeGenerator/PInvokeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6945,7 +6945,7 @@ private void WithUsings(NamedDecl namedDecl)
69456945
{
69466946
Debug.Assert(_outputBuilder is not null);
69476947

6948-
if (TryGetRemappedValue(namedDecl, _config.WithUsings, out var usings))
6948+
if (TryGetRemappedValue(namedDecl, _config.WithUsings, out var usings, matchStar: true))
69496949
{
69506950
foreach (var @using in usings)
69516951
{

0 commit comments

Comments
 (0)