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 --- pyuno/inc/pyuno/pyuno.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyuno/inc') diff --git a/pyuno/inc/pyuno/pyuno.hxx b/pyuno/inc/pyuno/pyuno.hxx index ae8f16eed2b8..cc7b2bb4a1b5 100644 --- a/pyuno/inc/pyuno/pyuno.hxx +++ b/pyuno/inc/pyuno/pyuno.hxx @@ -268,8 +268,8 @@ public: class LO_DLLPUBLIC_PYUNO PyThreadAttach { PyThreadState *tstate; - PyThreadAttach ( const PyThreadAttach & ) SAL_DELETED_FUNCTION; - PyThreadAttach & operator = ( const PyThreadAttach & ) SAL_DELETED_FUNCTION; + PyThreadAttach ( const PyThreadAttach & ) = delete; + PyThreadAttach & operator = ( const PyThreadAttach & ) = delete; public: /** Creates a new python threadstate and acquires the global interpreter lock. @@ -295,8 +295,8 @@ public: class LO_DLLPUBLIC_PYUNO PyThreadDetach { PyThreadState *tstate; - PyThreadDetach ( const PyThreadDetach & ) SAL_DELETED_FUNCTION; - PyThreadDetach & operator = ( const PyThreadDetach & ) SAL_DELETED_FUNCTION; + PyThreadDetach ( const PyThreadDetach & ) = delete; + PyThreadDetach & operator = ( const PyThreadDetach & ) = delete; public: /** Releases the global interpreter lock. -- cgit