Skip to content

Commit 9331ef8

Browse files
compnerdhamishknight
authored andcommitted
lldb: repair the Windows build after swiftlang#1447
`TBDGenOptions` was forward declared as a `class` rather than `struct`. The type mismatch causes a link failure as the type information is encoded into the decorated name under the Microsoft ABI. Switch the forward declaration to match.
1 parent 9f65230 commit 9331ef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/Symbol/SwiftASTContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class IRGenOptions;
5151
class NominalTypeDecl;
5252
class SearchPathOptions;
5353
class SILModule;
54-
class TBDGenOptions;
54+
struct TBDGenOptions;
5555
class VarDecl;
5656
class ModuleDecl;
5757
class SourceFile;

0 commit comments

Comments
 (0)