[Libreoffice-commits] core.git: cli_ure/source

Stephan Bergmann sbergman at redhat.com
Fri Sep 23 16:31:15 UTC 2016


 cli_ure/source/uno_bridge/cli_base.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6b51e526b70f32903608a1d4715bd26cd183aae3
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Sep 23 15:49:54 2016 +0200

    "// not impl" -> "= delete"
    
    Change-Id: Ide848d53564a4c4f822ae3875102ee09f03e3ce5
    Reviewed-on: https://gerrit.libreoffice.org/29232
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/cli_ure/source/uno_bridge/cli_base.h b/cli_ure/source/uno_bridge/cli_base.h
index 8c29e66..ea07ff0 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 );


More information about the Libreoffice-commits mailing list