diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-22 18:24:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-24 08:08:00 +0100 |
commit | b7259532d83ea1263f6944974d71162c47203939 (patch) | |
tree | 19d6a840d86070831573a583dd45a2b828218323 /include | |
parent | ad73967e99235a2ba9b5a2106c5d6d0f8efaa1ca (diff) |
Remove unnecessary bool2any
Change-Id: Ie2caee1d5a7912011d76172539c2f8f37eaee5cf
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/extract.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/comphelper/extract.hxx b/include/comphelper/extract.hxx index 07acf4258417..9a788c795870 100644 --- a/include/comphelper/extract.hxx +++ b/include/comphelper/extract.hxx @@ -121,17 +121,6 @@ inline bool SAL_CALL any2bool( const ::com::sun::star::uno::Any & rAny ) } } -/** - * Puts a boolean in an any. - * - * @DEPRECATED : use makeAny< sal_Bool >() - * - */ -inline ::com::sun::star::uno::Any SAL_CALL bool2any( bool bBool ) -{ - return ::com::sun::star::uno::Any( &bBool, ::getCppuBooleanType() ); -} - } #endif |