From bff4c13475957863bfa7da5bc3bcf82a64a7503a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 12 Oct 2015 15:25:41 +0200 Subject: Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3 --- configmgr/source/components.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configmgr/source/components.hxx') diff --git a/configmgr/source/components.hxx b/configmgr/source/components.hxx index 43e682e7757e..b28da71f4111 100644 --- a/configmgr/source/components.hxx +++ b/configmgr/source/components.hxx @@ -102,8 +102,8 @@ public: getExternalValue(OUString const & descriptor); private: - Components(const Components&) SAL_DELETED_FUNCTION; - Components& operator=(const Components&) SAL_DELETED_FUNCTION; + Components(const Components&) = delete; + Components& operator=(const Components&) = delete; typedef void FileParser( OUString const &, int, Data &, Partial const *, Modifications *, -- cgit