summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-23 15:49:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-23 16:29:08 +0000
commit6b51e526b70f32903608a1d4715bd26cd183aae3 (patch)
treef3dee70cfa37b659bae69ca69fe0793806069058 /cli_ure
parent5333743d3b8288fb40e4657aedf1db2255f6a62b (diff)
"// 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>
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/uno_bridge/cli_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli_ure/source/uno_bridge/cli_base.h b/cli_ure/source/uno_bridge/cli_base.h
index 8c29e66f28c4..ea07ff0767da 100644
--- a/cli_ure/source/uno_bridge/cli_base.h
+++ b/cli_ure/source/uno_bridge/cli_base.h
@@ -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 );