diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:09:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-07 12:35:57 +0100 |
commit | e92e1959ca18cc921fa97f1cbd28dc96a9177841 (patch) | |
tree | dad397e4d1b63e2517fbcfd9e8d7550e2c9fc143 /include/comphelper/configuration.hxx | |
parent | 4d79146adf941236d9fd2aeeff5cd291ec44d77e (diff) |
loplugin:deletedspecial
Change-Id: I0aeba0c65b19c1107f617ed0af0028cced9bd434
Diffstat (limited to 'include/comphelper/configuration.hxx')
-rw-r--r-- | include/comphelper/configuration.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/comphelper/configuration.hxx b/include/comphelper/configuration.hxx index 74ed03226722..31146f8ac726 100644 --- a/include/comphelper/configuration.hxx +++ b/include/comphelper/configuration.hxx @@ -143,8 +143,8 @@ template< typename T > struct Convert: private boost::noncopyable { { return value.get< T >(); } private: - Convert(); // not defined - ~Convert(); // not defined + Convert() SAL_DELETED_FUNCTION; + ~Convert() SAL_DELETED_FUNCTION; }; /// @internal @@ -164,8 +164,8 @@ template< typename T > struct Convert< boost::optional< T > >: } private: - Convert(); // not defined - ~Convert(); // not defined + Convert() SAL_DELETED_FUNCTION; + ~Convert() SAL_DELETED_FUNCTION; }; } @@ -208,8 +208,8 @@ template< typename T, typename U > struct ConfigurationProperty: } private: - ConfigurationProperty(); // not defined - ~ConfigurationProperty(); // not defined + ConfigurationProperty() SAL_DELETED_FUNCTION; + ~ConfigurationProperty() SAL_DELETED_FUNCTION; }; /// A type-safe wrapper around a localized configuration property. @@ -254,8 +254,8 @@ template< typename T, typename U > struct ConfigurationLocalizedProperty: } private: - ConfigurationLocalizedProperty(); // not defined - ~ConfigurationLocalizedProperty(); // not defined + ConfigurationLocalizedProperty() SAL_DELETED_FUNCTION; + ~ConfigurationLocalizedProperty() SAL_DELETED_FUNCTION; }; /// A type-safe wrapper around a configuration group. @@ -287,8 +287,8 @@ template< typename T > struct ConfigurationGroup: private boost::noncopyable { } private: - ConfigurationGroup(); // not defined - ~ConfigurationGroup(); // not defined + ConfigurationGroup() SAL_DELETED_FUNCTION; + ~ConfigurationGroup() SAL_DELETED_FUNCTION; }; /// A type-safe wrapper around a configuration set. @@ -320,8 +320,8 @@ template< typename T > struct ConfigurationSet: private boost::noncopyable { } private: - ConfigurationSet(); // not defined - ~ConfigurationSet(); // not defined + ConfigurationSet() SAL_DELETED_FUNCTION; + ~ConfigurationSet() SAL_DELETED_FUNCTION; }; } |