summaryrefslogtreecommitdiff
path: root/include/osl/thread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/osl/thread.hxx')
-rw-r--r--include/osl/thread.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osl/thread.hxx b/include/osl/thread.hxx
index 0c095a2055d9..8d9a82c2d9b5 100644
--- a/include/osl/thread.hxx
+++ b/include/osl/thread.hxx
@@ -46,8 +46,8 @@ extern "C" inline void SAL_CALL threadFunc( void* param);
*/
class Thread
{
- Thread( const Thread& );
- Thread& operator= ( const Thread& );
+ Thread( const Thread& ) SAL_DELETED_FUNCTION;
+ Thread& operator= ( const Thread& ) SAL_DELETED_FUNCTION;
public:
// these are here to force memory de/allocation to sal lib.
inline static void * SAL_CALL operator new( size_t nSize )
@@ -187,8 +187,8 @@ extern "C" inline void SAL_CALL threadFunc( void* param)
class ThreadData
{
- ThreadData( const ThreadData& );
- ThreadData& operator= (const ThreadData& );
+ ThreadData( const ThreadData& ) SAL_DELETED_FUNCTION;
+ ThreadData& operator= (const ThreadData& ) SAL_DELETED_FUNCTION;
public:
/// Create a thread specific local data key
ThreadData( oslThreadKeyCallbackFunction pCallback= 0 )