diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-30 22:04:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-30 23:12:27 +0200 |
commit | a9eed29a7ce85558fff6048a9cfe9bd437e63ce8 (patch) | |
tree | 15c160d811bc75fdfdb4b0cd9f9320647b87ecd4 /connectivity/Library_evoab.mk | |
parent | 970ff17f47731be788ec34c0c8ddf3fb2c24ceac (diff) |
Fix linking Library_evoab
> ld.lld: error: undefined symbol: LanguageTag::~LanguageTag()
> >>> referenced by NResultSet.cxx:82 (connectivity/source/drivers/evoab2/NResultSet.cxx:82)
> >>> /home/sbergman/lo3/core/workdir/CxxObject/connectivity/source/drivers/evoab2/NResultSet.o:(connectivity::evoab::ComparisonData::ComparisonData(std::__1::vector<connectivity::evoab::FieldSort, std::__1::allocator<connectivity::evoab::FieldSort>> const&))
> >>> referenced by NResultSet.cxx:82 (connectivity/source/drivers/evoab2/NResultSet.cxx:82)
> >>> /home/sbergman/lo3/core/workdir/CxxObject/connectivity/source/drivers/evoab2/NResultSet.o:(connectivity::evoab::ComparisonData::ComparisonData(std::__1::vector<connectivity::evoab::FieldSort, std::__1::allocator<connectivity::evoab::FieldSort>> const&))
after 7b87afa899be289306c709d35eb1d32c0b73b1ed "clang-tidy
modernize-pass-by-value in unotools" changed
> --- a/include/unotools/intlwrapper.hxx
> +++ b/include/unotools/intlwrapper.hxx
> @@ -61,7 +61,7 @@ private:
> void ImplNewCollator( bool bCaseSensitive ) const;
>
> public:
> - IntlWrapper(const LanguageTag& rLanguageTag);
> + IntlWrapper(LanguageTag aLanguageTag);
> ~IntlWrapper();
>
> const LocaleDataWrapper* getLocaleData() const
Change-Id: I29371b27c260c822c427dab70bcb29943e34dfc5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135144
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity/Library_evoab.mk')
-rw-r--r-- | connectivity/Library_evoab.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/Library_evoab.mk b/connectivity/Library_evoab.mk index 978838ca86f6..12f69771797b 100644 --- a/connectivity/Library_evoab.mk +++ b/connectivity/Library_evoab.mk @@ -30,6 +30,7 @@ $(eval $(call gb_Library_use_libraries,evoab,\ comphelper \ cppu \ cppuhelper \ + i18nlangtag \ svl \ tl \ utl \ |