summaryrefslogtreecommitdiffstats
path: root/clang
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2014-02-03 07:04:10 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2014-02-03 07:04:10 +0000
commit2eaf206455eb7b40aa8f7567b158145dadf2b668 (patch)
tree0b90a0febff6da0367019e9e138a2f95f497bda8 /clang
parent5e34db94bb73c63c39db08d16152f3bf3eb28b22 (diff)
downloadbcm5719-llvm-2eaf206455eb7b40aa8f7567b158145dadf2b668.tar.gz
bcm5719-llvm-2eaf206455eb7b40aa8f7567b158145dadf2b668.zip
Fix typo 'uusal'.
llvm-svn: 200681
Diffstat (limited to 'clang')
-rw-r--r--clang/lib/Sema/SemaExprCXX.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaExprCXX.cpp b/clang/lib/Sema/SemaExprCXX.cpp
index 2fd3af45503..395a02a8fef 100644
--- a/clang/lib/Sema/SemaExprCXX.cpp
+++ b/clang/lib/Sema/SemaExprCXX.cpp
@@ -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 &&
OpenPOWER on IntegriCloud