diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:24:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:36:00 +0100 |
commit | be90769d22b1b0dedae7697087001982425862a8 (patch) | |
tree | ecaf6d16abca69b6fd82201d7ec0f7864dbc236f /pyuno/inc | |
parent | 6a161173803a4ba619a95b9c8da1f00e376819bb (diff) |
loplugin:deletedspecial
Change-Id: If27afeb618435bb1d0d69cad26942ce6dd2cdb92
Diffstat (limited to 'pyuno/inc')
-rw-r--r-- | pyuno/inc/pyuno/pyuno.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyuno/inc/pyuno/pyuno.hxx b/pyuno/inc/pyuno/pyuno.hxx index 140ca1cc7b79..5efa96e8f058 100644 --- a/pyuno/inc/pyuno/pyuno.hxx +++ b/pyuno/inc/pyuno/pyuno.hxx @@ -270,8 +270,8 @@ public: class LO_DLLPUBLIC_PYUNO PyThreadAttach { PyThreadState *tstate; - PyThreadAttach ( const PyThreadAttach & ); // not implemented - PyThreadAttach & operator = ( const PyThreadAttach & ); + PyThreadAttach ( const PyThreadAttach & ) SAL_DELETED_FUNCTION; + PyThreadAttach & operator = ( const PyThreadAttach & ) SAL_DELETED_FUNCTION; public: /** Creates a new python threadstate and acquires the global interpreter lock. @@ -297,8 +297,8 @@ public: class LO_DLLPUBLIC_PYUNO PyThreadDetach { PyThreadState *tstate; - PyThreadDetach ( const PyThreadDetach & ); // not implemented - PyThreadDetach & operator = ( const PyThreadDetach & ); // not implemented + PyThreadDetach ( const PyThreadDetach & ) SAL_DELETED_FUNCTION; + PyThreadDetach & operator = ( const PyThreadDetach & ) SAL_DELETED_FUNCTION; public: /** Releases the global interpreter lock. |