diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:26:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:36:01 +0100 |
commit | 4a2f64620370587161b5437069c2f1d9f3d702d1 (patch) | |
tree | 5dac0ae9aaff806b9abe5c120d964abb4c360bed /include/rtl | |
parent | 034f2e1a2ace6c05e0a9fde192f4929303754544 (diff) |
loplugin:deletedspecial
Change-Id: I646d55ee80ceeefbb3647ec64278460cc5af579f
Diffstat (limited to 'include/rtl')
-rw-r--r-- | include/rtl/bootstrap.hxx | 4 | ||||
-rw-r--r-- | include/rtl/uri.hxx | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/include/rtl/bootstrap.hxx b/include/rtl/bootstrap.hxx index df9233b6000a..a190a87bd070 100644 --- a/include/rtl/bootstrap.hxx +++ b/include/rtl/bootstrap.hxx @@ -27,8 +27,8 @@ namespace rtl { void * _handle; - inline Bootstrap( Bootstrap const & ); // not impl - inline Bootstrap & operator = ( Bootstrap const & ); // not impl + Bootstrap( Bootstrap const & ) SAL_DELETED_FUNCTION; + Bootstrap & operator = ( Bootstrap const & ) SAL_DELETED_FUNCTION; public: /** diff --git a/include/rtl/uri.hxx b/include/rtl/uri.hxx index 1f52b3ad7248..84f9b012d152 100644 --- a/include/rtl/uri.hxx +++ b/include/rtl/uri.hxx @@ -65,17 +65,13 @@ public: rtl::OUString const & rBaseUriRef, rtl::OUString const & rRelUriRef); private: - /** not implemented */ - Uri(); + Uri() SAL_DELETED_FUNCTION; - /** not implemented */ - Uri(Uri &); + Uri(Uri &) SAL_DELETED_FUNCTION; - /** not implemented */ - ~Uri(); + ~Uri() SAL_DELETED_FUNCTION; - /** not implemented */ - void operator =(Uri); + void operator =(Uri) SAL_DELETED_FUNCTION; }; inline rtl::OUString Uri::encode(rtl::OUString const & rText, |