summaryrefslogtreecommitdiffstats
path: root/configmgr/source/configurationprovider.cxx
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 /configmgr/source/configurationprovider.cxx
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 'configmgr/source/configurationprovider.cxx')
-rw-r--r--configmgr/source/configurationprovider.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/configurationprovider.cxx b/configmgr/source/configurationprovider.cxx
index 31b87b69edd7..58c3da6e73b8 100644
--- a/configmgr/source/configurationprovider.cxx
+++ b/configmgr/source/configurationprovider.cxx
@@ -110,8 +110,8 @@ public:
}
private:
- Service(const Service&) SAL_DELETED_FUNCTION;
- Service& operator=(const Service&) SAL_DELETED_FUNCTION;
+ Service(const Service&) = delete;
+ Service& operator=(const Service&) = delete;
virtual ~Service() {}
@@ -376,8 +376,8 @@ public:
Factory() {}
private:
- Factory(const Factory&) SAL_DELETED_FUNCTION;
- Factory& operator=(const Factory&) SAL_DELETED_FUNCTION;
+ Factory(const Factory&) = delete;
+ Factory& operator=(const Factory&) = delete;
virtual ~Factory() {}