diff options
-rw-r--r-- | clang/lib/Sema/SemaTemplateDeduction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaTemplateDeduction.cpp b/clang/lib/Sema/SemaTemplateDeduction.cpp index ad7527e8c2d..5a8360f4b23 100644 --- a/clang/lib/Sema/SemaTemplateDeduction.cpp +++ b/clang/lib/Sema/SemaTemplateDeduction.cpp @@ -3228,7 +3228,7 @@ DeduceFromInitializerList(Sema &S, TemplateParameterList *TemplateParams, const bool IsDependentSizedArray = !IsConstSizedArray && AdjustedParamType->isDependentSizedArrayType(); - QualType ElTy; // The type of the std::initializer_list or the array element. + QualType ElTy; // The element type of the std::initializer_list or the array. const bool IsSTDList = !IsConstSizedArray && !IsDependentSizedArray && S.isStdInitializerList(AdjustedParamType, &ElTy); |