diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-18 13:40:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-19 09:35:59 +0200 |
commit | 30f7ce30c92e1add033cdea0a78cea5563758513 (patch) | |
tree | ff44ddb79dcbac9aab52b087dbe6573f4cff4b11 /compilerplugins/clang/constparams.cxx | |
parent | 0f7e64f3edbc1a49e9681d12ce24326150a8a675 (diff) |
loplugin:constparams in connectivity
Change-Id: I9b81c6227fb3c89a832640058a11444f72019694
Reviewed-on: https://gerrit.libreoffice.org/40155
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins/clang/constparams.cxx')
-rw-r--r-- | compilerplugins/clang/constparams.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compilerplugins/clang/constparams.cxx b/compilerplugins/clang/constparams.cxx index 4873b7828547..0bee8fbc134c 100644 --- a/compilerplugins/clang/constparams.cxx +++ b/compilerplugins/clang/constparams.cxx @@ -111,6 +111,8 @@ bool ConstParams::VisitFunctionDecl(FunctionDecl * functionDecl) || name.endswith("component_getFactory") // in Scheduler::, wants to loop until a reference to a bool becomes true || name == "ProcessEventsToSignal" + // external API + || name == "Java_com_sun_star_sdbcx_comp_hsqldb_StorageNativeOutputStream_flush" ) return true; } |