Renamed FunctionType::hasEqualArgumentTypes to FunctionType::hasEqualParameterTypes

This commit is contained in:
Jesse Busman
2018-08-06 13:05:06 +02:00
committed by chriseth
parent 13d3006376
commit 3fcd62921e
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -231,7 +231,7 @@ vector<Declaration const*> NameAndTypeResolver::cleanedDeclarations(
shared_ptr<FunctionType const> newFunctionType { d->functionType(false) };
if (!newFunctionType)
newFunctionType = d->functionType(true);
return newFunctionType && functionType->hasEqualArgumentTypes(*newFunctionType);
return newFunctionType && functionType->hasEqualParameterTypes(*newFunctionType);
}
))
uniqueFunctions.push_back(declaration);