From a7ecf4545af7330f2e9034249dca37d0f14be5b2 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Wed, 10 Apr 2019 16:05:28 +0000 Subject: [PATCH] Fix typo Change-Id: I925942a89d7f01c008788aeada8009a37564b02f Reviewed-on: https://gerrit.libreoffice.org/70971 Tested-by: Jenkins Reviewed-by: Julien Nabet --- compilerplugins/clang/vclwidgets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;