]> granicus.if.org Git - clang/commitdiff
Fix spelling in comment.
authorSteve Naroff <snaroff@apple.com>
Sat, 9 Feb 2008 17:25:18 +0000 (17:25 +0000)
committerSteve Naroff <snaroff@apple.com>
Sat, 9 Feb 2008 17:25:18 +0000 (17:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46906 91177308-0d34-0410-b5e6-96231b3b80d8

Sema/SemaExpr.cpp

index 179117e96e6c17815839dbcde6008c0eb771a938..2b63c10d98e0eba118e834b8205f9467520fa258 100644 (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;