Skip to content

Commit d0216f1

Browse files
committed
Ignore type maps when printing C++ for symbols
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent 6a9d829 commit d0216f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Generator/Passes/SymbolsCodeGenerator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ public SymbolsCodeGenerator(BindingContext context, IEnumerable<TranslationUnit>
1919
cppTypePrinter = new CppTypePrinter(Context)
2020
{
2121
ScopeKind = TypePrintScopeKind.Qualified,
22-
ResolveTypedefs = true
22+
ResolveTypedefs = true,
23+
ResolveTypeMaps = false
2324
};
2425

2526
cppTypePrinter.PushContext(TypePrinterContextKind.Native);

0 commit comments

Comments
 (0)