diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-27 12:43:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-27 12:43:41 +0200 |
commit | 2d506f4c3d6044b992a08c877195d0a9f7692c64 (patch) | |
tree | 47f9b16a3815456a7995d19f886793928f4ec6f9 /compilerplugins | |
parent | 521723b1180a32c02a88ed47137d4242c06eaca7 (diff) |
fix spelling containging->containing
Change-Id: I49f736c049735e89ce9f71740f5c308120378a9a
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/stringconstant.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/compilerplugins/clang/stringconstant.cxx b/compilerplugins/clang/stringconstant.cxx index 464fe0671d01..50b2a600b66b 100644 --- a/compilerplugins/clang/stringconstant.cxx +++ b/compilerplugins/clang/stringconstant.cxx @@ -511,7 +511,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " non-ASCII characters"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() << expr->getSourceRange(); @@ -519,7 +519,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (emb) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " embedded NULs"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() << expr->getSourceRange(); @@ -552,7 +552,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " non-ASCII characters"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() @@ -561,7 +561,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (emb) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " embedded NULs"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() @@ -597,7 +597,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " non-ASCII characters"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() @@ -606,7 +606,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (emb) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " embedded NULs"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() @@ -641,7 +641,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " non-ASCII characters"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() << expr->getSourceRange(); @@ -649,7 +649,7 @@ bool StringConstant::VisitCallExpr(CallExpr const * expr) { if (emb) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging" + ("call of '%0' with string constant argument containing" " embedded NULs"), expr->getExprLoc()) << fdecl->getQualifiedNameAsString() << expr->getSourceRange(); @@ -797,7 +797,7 @@ bool StringConstant::VisitCXXConstructExpr(CXXConstructExpr const * expr) { report( DiagnosticsEngine::Warning, ("construction of %0 with string constant argument" - " containging non-ASCII characters"), + " containing non-ASCII characters"), expr->getExprLoc()) << classdecl << expr->getSourceRange(); } @@ -805,7 +805,7 @@ bool StringConstant::VisitCXXConstructExpr(CXXConstructExpr const * expr) { report( DiagnosticsEngine::Warning, ("construction of %0 with string constant argument" - " containging embedded NULs"), + " containing embedded NULs"), expr->getExprLoc()) << classdecl << expr->getSourceRange(); } @@ -1448,7 +1448,7 @@ void StringConstant::handleChar( if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging non-ASCII" + ("call of '%0' with string constant argument containing non-ASCII" " characters"), getMemberLocation(expr)) << callee->getQualifiedNameAsString() << expr->getSourceRange(); @@ -1457,7 +1457,7 @@ void StringConstant::handleChar( if (emb) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging embedded" + ("call of '%0' with string constant argument containing embedded" " NULs"), getMemberLocation(expr)) << callee->getQualifiedNameAsString() << expr->getSourceRange(); @@ -1541,7 +1541,7 @@ void StringConstant::handleCharLen( if (non) { report( DiagnosticsEngine::Warning, - ("call of '%0' with string constant argument containging non-ASCII" + ("call of '%0' with string constant argument containing non-ASCII" " characters"), getMemberLocation(expr)) << callee->getQualifiedNameAsString() << expr->getSourceRange(); |