]> granicus.if.org Git - clang/commitdiff
Fix typo 'uusal'.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 3 Feb 2014 07:04:10 +0000 (07:04 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 3 Feb 2014 07:04:10 +0000 (07:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200681 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExprCXX.cpp

index 2fd3af45503c358b01d1d1dfd9c2aec8c8e192d5..395a02a8fefa962d102a1be070bc1276c69b3727 100644 (file)
@@ -1797,7 +1797,7 @@ bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
       else
         Matches.erase(Matches.begin() + 1);
       assert(Matches[0].second->getNumParams() == 2 &&
-             "found an unexpected uusal deallocation function");
+             "found an unexpected usual deallocation function");
     }
   }
 
@@ -2158,7 +2158,7 @@ FunctionDecl *Sema::FindUsualDeallocationFunction(SourceLocation StartLoc,
     else
       Matches.erase(Matches.begin() + 1);
     assert(Matches[0]->getNumParams() == NumArgs &&
-           "found an unexpected uusal deallocation function");
+           "found an unexpected usual deallocation function");
   }
 
   assert(Matches.size() == 1 &&