Skip to content

Commit 95f3fb0

Browse files
authored
Merge pull request swiftlang#9353 from hamishknight/rename-arg-interface-ty
[lldb] NFC: Update for `getArgumentInterfaceType` rename
2 parents 36eb110 + ab2eac6 commit 95f3fb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ class SwiftAllPayloadEnumDescriptor : public SwiftEnumDescriptor {
611611

612612
swift::EnumElementDecl *case_decl = enum_case.decl;
613613
assert(case_decl);
614-
auto arg_type = case_decl->getArgumentInterfaceType();
614+
auto arg_type = case_decl->getPayloadInterfaceType();
615615
CompilerType case_type;
616616
if (arg_type) {
617617
case_type = ToCompilerType(

0 commit comments

Comments
 (0)