"// not impl" -> "= delete"

Change-Id: Ide848d53564a4c4f822ae3875102ee09f03e3ce5
Reviewed-on: https://gerrit.libreoffice.org/29232
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
Stephan Bergmann 2016-09-23 15:49:54 +02:00
parent 5333743d3b
commit 6b51e526b7

View File

@ -140,8 +140,8 @@ class TypeDescr
{
typelib_TypeDescription * m_td;
TypeDescr( TypeDescr & ); // not impl
void operator = ( TypeDescr ); // not impl
TypeDescr( TypeDescr & ) = delete;
void operator = ( TypeDescr ) = delete;
public:
inline explicit TypeDescr( typelib_TypeDescriptionReference * td_ref );