Skip to content

Commit eead4ae

Browse files
[NFC] Remove unused function parameter.
1 parent 8da4d53 commit eead4ae

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

include/swift/AST/ASTContext.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ class ASTContext final {
606606
const clang::Type *
607607
getCanonicalClangFunctionType(
608608
ArrayRef<SILParameterInfo> params, Optional<SILResultInfo> result,
609-
const SILFunctionType::ExtInfo incompleteExtInfo,
610609
SILFunctionType::Representation trueRep);
611610

612611
/// Get the Swift declaration that a Clang declaration was exported from,

lib/AST/ASTContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4477,7 +4477,6 @@ const clang::Type *
44774477
ASTContext::getCanonicalClangFunctionType(
44784478
ArrayRef<SILParameterInfo> params,
44794479
Optional<SILResultInfo> result,
4480-
SILFunctionType::ExtInfo incompleteExtInfo,
44814480
SILFunctionType::Representation trueRep) {
44824481
auto *ty = getClangTypeConverter().getFunctionType(params, result, trueRep);
44834482
return ty ? ty->getCanonicalTypeInternal().getTypePtr() : nullptr;

0 commit comments

Comments
 (0)