From: Faisal Vali Date: Thu, 10 Dec 2015 12:29:11 +0000 (+0000) Subject: [NFC] Improve a comment from my previous commit (r255221) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76fd8510f100035c743cba5d5f4620fb6abb8bb9;p=clang [NFC] Improve a comment from my previous commit (r255221) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255244 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaTemplateDeduction.cpp b/lib/Sema/SemaTemplateDeduction.cpp index ad7527e8c2..5a8360f4b2 100644 --- a/lib/Sema/SemaTemplateDeduction.cpp +++ b/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);