diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-10-26 15:01:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-26 22:37:35 +0200 |
commit | f1a3218a91d53ca40058598580ed0031336eb21c (patch) | |
tree | 7e1b0ec0e218761f033a9a95f20a1779198e1016 | |
parent | a1c693d23f53f035771de54fb139772be91e9bfb (diff) |
Silence -Werror,-Wdeprecated-copy
"definition of implicit copy assignment operator for 'NfCurrencyEntry' is
deprecated because it has a user-declared copy constructor" after
97e63ff5375d9d80d6fe5d4bd68883e35bd56d91 "Fix toolbar button's currency list's
number format for default locale" added that user-declared, defaulted
constructor, for no apparent reason
Change-Id: I070c8189c6dae8e62eb69ce40a2a1342cf0214a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124227
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
-rw-r--r-- | include/svl/zforlist.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx index 251b8212a3cd..f332d8405470 100644 --- a/include/svl/zforlist.hxx +++ b/include/svl/zforlist.hxx @@ -323,7 +323,6 @@ public: NfCurrencyEntry( const css::i18n::Currency & rCurr, const LocaleDataWrapper& rLocaleData, LanguageType eLang ); - NfCurrencyEntry( const NfCurrencyEntry& ) = default; /// Symbols and language identical bool operator==( const NfCurrencyEntry& r ) const; |