diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-11-30 19:15:13 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-20 10:26:04 +0100 |
commit | 972aa39fb976e30ce73065b1eba69f4c78c17855 (patch) | |
tree | 144c1a2c7ef462c6391bb6cd647a05960ee2aa96 /compilerplugins | |
parent | e9443070888628f7643741c1abcaaef28de6a53f (diff) |
WASM open links in new browser tabs
I quickly gave up trying to understand what exactly clashes
between the Emscripten macros and OUString templates /
initializers. Not sure it can actually be "fixed".
Also disables the makeshared clang compilerplugin; currently
there is no way to get rid of all the false positive hits
when assigning the std::shared_ptr from a function instead of
a constructor call.
Change-Id: I8b13f179629ea63ff221584030556d2bedadc01b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128604
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/makeshared.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/makeshared.cxx b/compilerplugins/clang/makeshared.cxx index 816d1269fac3..bac0ea0a5653 100644 --- a/compilerplugins/clang/makeshared.cxx +++ b/compilerplugins/clang/makeshared.cxx @@ -242,7 +242,7 @@ bool MakeShared::VisitVarDecl(VarDecl const* varDecl) return true; } -loplugin::Plugin::Registration<MakeShared> makeshared("makeshared"); +loplugin::Plugin::Registration<MakeShared> makeshared("makeshared", false); } // namespace |