Kaydet (Commit) 2b55846a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: Ifac86f4d7e637e9fdbce7e60f6d383e7dca69508
üst d93bcf77
......@@ -77,8 +77,8 @@ public:
uno_Mapping * getUno2Cpp() { return &aUno2Cpp; }
private:
Bridge(Bridge &); // not implemented
void operator =(const Bridge&); // not implemented
Bridge(Bridge &) SAL_DELETED_FUNCTION;
void operator =(const Bridge&) SAL_DELETED_FUNCTION;
Bridge(
uno_ExtEnvironment * pCppEnv_, uno_ExtEnvironment * pUnoEnv_,
......
......@@ -66,8 +66,8 @@ public:
static CppInterfaceProxy * castInterfaceToProxy(void * pInterface);
private:
CppInterfaceProxy(CppInterfaceProxy &); // not implemented
void operator =(const CppInterfaceProxy&); // not implemented
CppInterfaceProxy(CppInterfaceProxy &) SAL_DELETED_FUNCTION;
void operator =(const CppInterfaceProxy&) SAL_DELETED_FUNCTION;
CppInterfaceProxy(
Bridge * pBridge_, uno_Interface * pUnoI_,
......
......@@ -73,8 +73,8 @@ public:
com::sun::star::uno::XInterface * getCppI() { return pCppI; }
private:
UnoInterfaceProxy(UnoInterfaceProxy &); // not implemented
void operator =(const UnoInterfaceProxy&); // not implemented
UnoInterfaceProxy(UnoInterfaceProxy &) SAL_DELETED_FUNCTION;
void operator =(const UnoInterfaceProxy&) SAL_DELETED_FUNCTION;
UnoInterfaceProxy(
Bridge * pBridge_, com::sun::star::uno::XInterface * pCppI_,
......
......@@ -120,8 +120,8 @@ private:
class BaseOffset;
VtableFactory(VtableFactory &); // not implemented
void operator =(const VtableFactory&); // not implemented
VtableFactory(VtableFactory &) SAL_DELETED_FUNCTION;
void operator =(const VtableFactory&) SAL_DELETED_FUNCTION;
bool createBlock(Block &block, sal_Int32 slotCount) const;
......
......@@ -33,8 +33,8 @@ public:
T * release() { T * p = pointer; pointer = 0; return p; }
private:
GuardedArray(GuardedArray &); // not implemented
void operator =(GuardedArray); // not implemented
GuardedArray(GuardedArray &) SAL_DELETED_FUNCTION;
void operator =(GuardedArray) SAL_DELETED_FUNCTION;
T * pointer;
};
......
......@@ -57,8 +57,8 @@ class JNI_context
JNIEnv * m_env;
jobject m_class_loader;
JNI_context( JNI_context & ); // not impl
void operator = ( JNI_context ); // not impl
JNI_context( JNI_context & ) SAL_DELETED_FUNCTION;
void operator = ( JNI_context ) SAL_DELETED_FUNCTION;
void java_exc_occurred() const;
public:
......@@ -120,8 +120,8 @@ class JNI_guarded_context
: private ::jvmaccess::VirtualMachine::AttachGuard,
public JNI_context
{
JNI_guarded_context( JNI_guarded_context & ); // not impl
void operator = ( JNI_guarded_context ); // not impl
JNI_guarded_context( JNI_guarded_context & ) SAL_DELETED_FUNCTION;
void operator = ( JNI_guarded_context ) SAL_DELETED_FUNCTION;
public:
inline explicit JNI_guarded_context(
......@@ -236,8 +236,8 @@ class TypeDescr
{
typelib_TypeDescription * m_td;
TypeDescr( TypeDescr & ); // not impl
void operator = ( TypeDescr ); // not impl
TypeDescr( TypeDescr & ) SAL_DELETED_FUNCTION;
void operator = ( TypeDescr ) SAL_DELETED_FUNCTION;
public:
inline explicit TypeDescr( typelib_TypeDescriptionReference * td_ref );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment