diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-02-04 09:21:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-02-04 10:37:51 +0100 |
commit | bfbb28d4130a70a821466fa25948c5da5369f973 (patch) | |
tree | 4c042db989e49116884f85d0f82ba63853283ef5 /include/svx | |
parent | 627869ff6cd910faa92bd7511e5fd0e8c10b8379 (diff) |
UBSan build missing RTTI now
...e.g. during CppunitTest_sc_copypaste
> [_RUN_____] ScCopyPasteTest::testCopyPasteXLS
[...]
> warn:sal.osl:22300:22300:sal/osl/unx/module.cxx:152: dlopen(/home/tdf/lode/jenkins/workspace/lo_ubsan/instdir/program/libchartcorelo.so, 257): /home/tdf/lode/jenkins/workspace/lo_ubsan/instdir/program/libchartcorelo.so: undefined symbol: _ZTI19SvxShapePolyPolygon
[...]
(<https://ci.libreoffice.org/job/lo_ubsan/2289/>)
Change-Id: I6b62aa4636b65ae728c462e91e5a024366c95a56
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129481
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/unoshape.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx index a6ebdeed682d..61cfdd502638 100644 --- a/include/svx/unoshape.hxx +++ b/include/svx/unoshape.hxx @@ -621,7 +621,7 @@ public: /*********************************************************************** * * ***********************************************************************/ -class SvxShapePolyPolygon final : public SvxShapeText +class SAL_DLLPUBLIC_RTTI SvxShapePolyPolygon final : public SvxShapeText { using SvxUnoTextRangeBase::setPropertyValue; using SvxUnoTextRangeBase::getPropertyValue; |