diff options
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, |