Skip to content

Commit 845ba43

Browse files
committed
Updates to address code review feedback from Erich Keane.
- Replaced use of `auto` with a type alias added via #135861.
1 parent 9ba5697 commit 845ba43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/CodeGen/CGCall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ CodeGenTypes::arrangeBuiltinFunctionDeclaration(CanQualType resultType,
742742
const CGFunctionInfo &
743743
CodeGenTypes::arrangeSYCLKernelCallerDeclaration(QualType resultType,
744744
const FunctionArgList &args) {
745-
auto argTypes = getArgTypesForDeclaration(Context, args);
745+
CanQualTypeList argTypes = getArgTypesForDeclaration(Context, args);
746746

747747
return arrangeLLVMFunctionInfo(GetReturnType(resultType), FnInfoOpts::None,
748748
argTypes,

0 commit comments

Comments
 (0)