connectivity/Library_evoab.mk | 1 +
1 file changed, 1 insertion(+)
New commits:
commit a9eed29a7ce85558fff6048a9cfe9bd437e63ce8
Author: Stephan Bergmann <[email protected]>
AuthorDate: Mon May 30 22:04:53 2022 +0200
Commit: Stephan Bergmann <[email protected]>
CommitDate: Mon May 30 23:12:27 2022 +0200
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 <[email protected]>
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 \