diff --git a/compilerplugins/clang/vclwidgets.cxx b/compilerplugins/clang/vclwidgets.cxx index 4c699bc5a77b..45dbe450ec87 100644 --- a/compilerplugins/clang/vclwidgets.cxx +++ b/compilerplugins/clang/vclwidgets.cxx @@ -292,7 +292,7 @@ void VCLWidgets::checkAssignmentForVclPtrToRawConversion(const SourceLocation& s // if we have T* on the LHS and VclPtr on the RHS, we expect to see either // an ImplicitCastExpr - // or a ExprWithCleanups and then an ImplicitCastExpr + // or an ExprWithCleanups and then an ImplicitCastExpr if (auto implicitCastExpr = dyn_cast(rhs)) { if (implicitCastExpr->getCastKind() != CK_UserDefinedConversion) { return;