summaryrefslogtreecommitdiffstats
path: root/compilerplugins
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2021-10-18 22:13:17 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-10-19 23:38:23 +0200
commit5b20bb65363812388123d36f741e47b6195dde6b (patch)
tree783bf8267a1553902124bb8c1818ab044f18ff94 /compilerplugins
parentResolves: tdf#145173 Add English (Israel) {en-IL} locale data (diff)
downloadcore-5b20bb65363812388123d36f741e47b6195dde6b.tar.gz
core-5b20bb65363812388123d36f741e47b6195dde6b.zip
tdf#145203: FIREBIRD cannot create a table
Regression from: https://cgit.freedesktop.org/libreoffice/core/commit/?id=1cf57765dd9a66982ecf9cd33687005a70c70c3f 2021-10-08 loplugin:moveparam in connectivity Change-Id: Iec0fa1597e63d42ee3a905bf55eff798b3f46177 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123787 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/redundantfcast.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/compilerplugins/clang/redundantfcast.cxx b/compilerplugins/clang/redundantfcast.cxx
index 4952d37caf79..67ff2c56edef 100644
--- a/compilerplugins/clang/redundantfcast.cxx
+++ b/compilerplugins/clang/redundantfcast.cxx
@@ -331,6 +331,9 @@ public:
// TODO constructing a temporary to pass to a && param
if (fn == SRCDIR "/sc/source/ui/view/viewfunc.cxx")
return false;
+ // tdf#145203: FIREBIRD cannot create a table
+ if (fn == SRCDIR "/connectivity/source/drivers/firebird/DatabaseMetaData.cxx")
+ return false;
return true;
}