summaryrefslogtreecommitdiff
path: root/pyuno
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 /pyuno
parent27491c28cb67ada0a4c5eaa90eaf589425990582 (diff)
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/inc/pyuno/pyuno.hxx8
1 files changed, 4 insertions, 4 deletions
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.