Skip to content

Commit a44ccf3

Browse files
authored
Merge pull request #564 from JDevlieghere/🍒/f6af6c3ed2e3d5aa9d4534552ee7aadb85b0eab4
[lldb] Fix that Objective-C methods were never variadic
2 parents 38262fb + 4d53338 commit a44ccf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎lldb/source/Symbol/ClangASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8666,7 +8666,7 @@ clang::ObjCMethodDecl *ClangASTContext::AddMethodToObjCObjectType(
86668666
return nullptr;
86678667

86688668
const bool isInstance = (name[0] == '-');
8669-
const bool isVariadic = false;
8669+
const bool isVariadic = is_variadic;
86708670
const bool isPropertyAccessor = false;
86718671
const bool isSynthesizedAccessorStub = false;
86728672
/// Force this to true because we don't have source locations.

0 commit comments

Comments
 (0)