include/ucbhelper/propertyvalueset.hxx | 2 +- include/ucbhelper/resultset.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 1c387bbf2fdf265c33c8eefbb769fae82b412769 Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Feb 21 13:01:53 2024 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Feb 21 15:18:19 2024 +0100 Fix UBSan build's RTTI needs ...after 3ba92b5f1eaf7d4447a0943ea260db515ca799dc "hide more symbols" had caused CppunitTest_ucb_webdav_core to fail with > DynamicLibraryManagerException: "Failed to load dynamic library: workdir/LinkTarget/CppunitTest/libtest_ucb_webdav_core.so > workdir/LinkTarget/CppunitTest/libtest_ucb_webdav_core.so: undefined symbol: _ZTIN9ucbhelper16PropertyValueSetE" etc. Change-Id: I54832b1c7a9850e536bfcab076f15465b170a065 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163690 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/include/ucbhelper/propertyvalueset.hxx b/include/ucbhelper/propertyvalueset.hxx index 00a7ec00158b..6fa9930d39cb 100644 --- a/include/ucbhelper/propertyvalueset.hxx +++ b/include/ucbhelper/propertyvalueset.hxx @@ -54,7 +54,7 @@ class PropertyValues; * values to return can easily appended to a valueset object. That object can * directly be returned by the implementation of the command. */ -class PropertyValueSet final : +class SAL_DLLPUBLIC_RTTI PropertyValueSet final : public cppu::WeakImplHelper< css::sdbc::XRow, css::sdbc::XColumnLocate> diff --git a/include/ucbhelper/resultset.hxx b/include/ucbhelper/resultset.hxx index 5e9bad0ce499..3884509e2045 100644 --- a/include/ucbhelper/resultset.hxx +++ b/include/ucbhelper/resultset.hxx @@ -56,7 +56,7 @@ struct ResultSet_Impl; * * @see ResultSetDataSupplier */ -class ResultSet final : +class SAL_DLLPUBLIC_RTTI ResultSet final : public cppu::WeakImplHelper< css::lang::XServiceInfo, css::lang::XComponent,
