We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3311e15 commit dd53bfaCopy full SHA for dd53bfa
clang/include/clang/Sema/Overload.h
@@ -362,7 +362,7 @@ class Sema;
362
363
/// Whether the source expression was originally a single element
364
/// braced-init-list. Such a conversion is not a perfect match,
365
- /// as we prefer a std::list_initializer constructor over an exact match
+ /// as we prefer a std::initializer_list constructor over an exact match
366
/// constructor.
367
LLVM_PREFERRED_TYPE(bool)
368
unsigned FromBracedInitList : 1;
@@ -420,7 +420,7 @@ class Sema;
420
if (!isIdentityConversion())
421
return false;
422
423
- // We might prefer a std::initializer constructor,
+ // We might prefer a std::initializer_list constructor,
424
// so this sequence cannot be perfect
425
if (FromBracedInitList)
426
0 commit comments