summaryrefslogtreecommitdiffstats
path: root/include/i18nutil
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 15:25:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:26 +0200
commitbff4c13475957863bfa7da5bc3bcf82a64a7503a (patch)
tree23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /include/i18nutil
parentHAVE_CXX11_DELETE is required on all supported toolchains (diff)
downloadcore-bff4c13475957863bfa7da5bc3bcf82a64a7503a.tar.gz
core-bff4c13475957863bfa7da5bc3bcf82a64a7503a.zip
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'include/i18nutil')
-rw-r--r--include/i18nutil/oneToOneMapping.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/i18nutil/oneToOneMapping.hxx b/include/i18nutil/oneToOneMapping.hxx
index cde6681e2089..76405078c340 100644
--- a/include/i18nutil/oneToOneMapping.hxx
+++ b/include/i18nutil/oneToOneMapping.hxx
@@ -43,8 +43,8 @@ struct UnicodePairWithFlag
class I18NUTIL_DLLPUBLIC oneToOneMapping
{
private:
- oneToOneMapping(const oneToOneMapping&) SAL_DELETED_FUNCTION;
- oneToOneMapping& operator=(const oneToOneMapping&) SAL_DELETED_FUNCTION;
+ oneToOneMapping(const oneToOneMapping&) = delete;
+ oneToOneMapping& operator=(const oneToOneMapping&) = delete;
public:
oneToOneMapping( OneToOneMappingTable_t *rpTable, const size_t rnSize, const size_t rnUnitSize = sizeof(OneToOneMappingTable_t) );
virtual ~oneToOneMapping();
@@ -63,8 +63,8 @@ protected:
class I18NUTIL_DLLPUBLIC oneToOneMappingWithFlag : public oneToOneMapping
{
private:
- oneToOneMappingWithFlag(const oneToOneMappingWithFlag&) SAL_DELETED_FUNCTION;
- oneToOneMappingWithFlag& operator=(const oneToOneMappingWithFlag&) SAL_DELETED_FUNCTION;
+ oneToOneMappingWithFlag(const oneToOneMappingWithFlag&) = delete;
+ oneToOneMappingWithFlag& operator=(const oneToOneMappingWithFlag&) = delete;
friend class widthfolding;