diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-03 11:14:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-03 11:18:21 +0200 |
commit | f12096272e684ddcd8ffa4e34dcb0a680cc594c2 (patch) | |
tree | 0e23e71759a299f0ca249831a3803d50fec64c3a /compilerplugins/clang/redundantcast.cxx | |
parent | 1b12d5ecb1be36267534e0b980d7c53d50645511 (diff) |
spelling, implictly->implicitly
Change-Id: I2d733ed3ce9395d11700d739cbd6d123649b4013
Diffstat (limited to 'compilerplugins/clang/redundantcast.cxx')
-rw-r--r-- | compilerplugins/clang/redundantcast.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compilerplugins/clang/redundantcast.cxx b/compilerplugins/clang/redundantcast.cxx index a229f95044c7..b7fbfd3c9010 100644 --- a/compilerplugins/clang/redundantcast.cxx +++ b/compilerplugins/clang/redundantcast.cxx @@ -214,7 +214,7 @@ bool RedundantCast::VisitImplicitCastExpr(const ImplicitCastExpr * expr) { report( DiagnosticsEngine::Warning, ("redundant const_cast from %0 to %1, result is" - " implictly cast to %2"), + " implicitly cast to %2"), e->getExprLoc()) << e->getSubExprAsWritten()->getType() << e->getType() << expr->getType() << expr->getSourceRange(); @@ -237,7 +237,7 @@ bool RedundantCast::VisitImplicitCastExpr(const ImplicitCastExpr * expr) { report( DiagnosticsEngine::Warning, ("redundant const_cast from %0 to %1, result is" - " ultimately implictly cast to %2"), + " ultimately implicitly cast to %2"), cc->getExprLoc()) << cc->getSubExprAsWritten()->getType() << cc->getType() << expr->getType() << expr->getSourceRange(); @@ -281,7 +281,7 @@ bool RedundantCast::VisitImplicitCastExpr(const ImplicitCastExpr * expr) { report( DiagnosticsEngine::Warning, ("redundant const_cast from %0 to %1, result is" - " ultimately implictly cast to %2"), + " ultimately implicitly cast to %2"), cc->getExprLoc()) << cc->getSubExprAsWritten()->getType() << cc->getType() << expr->getType() << expr->getSourceRange(); @@ -300,7 +300,7 @@ bool RedundantCast::VisitImplicitCastExpr(const ImplicitCastExpr * expr) { report( DiagnosticsEngine::Warning, ("redundant const_cast from %0 to %1, result is" - " ultimately implictly cast to %2"), + " ultimately implicitly cast to %2"), cc->getExprLoc()) << cc->getSubExprAsWritten()->getType() << cc->getType() << expr->getType() << expr->getSourceRange(); |