Fix spelling in comment.

llvm-svn: 46906
This commit is contained in:
Steve Naroff 2008-02-09 17:25:18 +00:00
parent 45173e0ac0
commit 4cc387212a
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ void Sema::DefaultFunctionArrayConversion(Expr *&e) {
if (t->isFunctionType())
ImpCastExprToType(e, Context.getPointerType(t));
else if (const ArrayType *ary = t->getAsArrayType()) {
// Make sure we don't loose qualifiers when dealing with typedefs. Example:
// Make sure we don't lose qualifiers when dealing with typedefs. Example:
// typedef int arr[10];
// void test2() {
// const arr b;