Kaydet (Commit) 109113c4 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: I4ed4004990f0e98a1095f3b7f4a6d9dac009a4eb
üst b13b01a2
......@@ -59,8 +59,8 @@ public:
inline int isValid (rtl::OUString * pReason) {return m_isValid(this, &pReason->pData);}
private:
Enterable(Enterable const &);
Enterable & operator = (Enterable const &);
Enterable(Enterable const &) SAL_DELETED_FUNCTION;
Enterable & operator = (Enterable const &) SAL_DELETED_FUNCTION;
};
extern "C" inline void Enterable_call_enter (void * context) { ((Enterable *)context)->v_enter(); }
......
......@@ -268,9 +268,9 @@ public:
}
private:
UnoType(UnoType &); // not defined
~UnoType(); // not defined
void operator =(UnoType &); // not defined
UnoType(UnoType &) SAL_DELETED_FUNCTION;
~UnoType() SAL_DELETED_FUNCTION;
void operator =(UnoType &) SAL_DELETED_FUNCTION;
};
/**
......
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