Skip to content

Commit d6ba427

Browse files
committed
lldb: repair the Windows build after #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 d709fba commit d6ba427

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
@@ -48,7 +48,7 @@ class IRGenOptions;
4848
class NominalTypeDecl;
4949
class SearchPathOptions;
5050
class SILModule;
51-
class TBDGenOptions;
51+
struct TBDGenOptions;
5252
class VarDecl;
5353
class ModuleDecl;
5454
class SourceFile;

0 commit comments

Comments
 (0)