compilerplugins/clang/redundantfcast.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 427188600ffe31d142ca6d0e1d549e3c1c4246b8 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Apr 21 20:19:03 2022 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Thu Apr 21 20:55:53 2022 +0200 Fix typo Change-Id: I0444ed426dddd36e464b59758545155e11e9c13a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133298 Tested-by: Julien Nabet <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/compilerplugins/clang/redundantfcast.cxx b/compilerplugins/clang/redundantfcast.cxx index 1378d9eaf435..aed71e8783f9 100644 --- a/compilerplugins/clang/redundantfcast.cxx +++ b/compilerplugins/clang/redundantfcast.cxx @@ -335,7 +335,7 @@ public: // tdf#145203: FIREBIRD cannot create a table if (fn == SRCDIR "/connectivity/source/drivers/firebird/DatabaseMetaData.cxx") return false; - // false positive during using contructor drawinglayer::attribute::StrokeAttribute({ 3 * pw, pw }) + // false positive during using constructor drawinglayer::attribute::StrokeAttribute({ 3 * pw, pw }) if (fn == SRCDIR "/drawinglayer/source/tools/emfppen.cxx") return false; return true;
