[NFC] Improve a comment from my previous commit (r255221)

llvm-svn: 255244
This commit is contained in:
Faisal Vali 2015-12-10 12:29:11 +00:00
parent a396143a28
commit dd76cc1920
1 changed files with 1 additions and 1 deletions

View File

@ -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);