summaryrefslogtreecommitdiffstats
path: root/compilerplugins
diff options
context:
space:
mode:
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;
}