diff options
Diffstat (limited to 'include/comphelper/unwrapargs.hxx')
-rw-r--r-- | include/comphelper/unwrapargs.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/unwrapargs.hxx b/include/comphelper/unwrapargs.hxx index 7c1d26d3a0aa..3ba4e213c266 100644 --- a/include/comphelper/unwrapargs.hxx +++ b/include/comphelper/unwrapargs.hxx @@ -22,7 +22,7 @@ #include <sal/config.h> -#include <boost/optional.hpp> +#include <o3tl/optional.hxx> #include <rtl/ustrbuf.hxx> #include <com/sun/star/uno/Sequence.hxx> @@ -67,7 +67,7 @@ namespace detail { template< typename T, typename... Args > inline void unwrapArgs( const css::uno::Sequence< css::uno::Any >& seq, - sal_Int32 nArg, ::boost::optional< T >& v, Args&... args ); + sal_Int32 nArg, ::o3tl::optional< T >& v, Args&... args ); template< typename T, typename... Args > inline void unwrapArgs( @@ -95,7 +95,7 @@ namespace detail { template< typename T, typename... Args > inline void unwrapArgs( const css::uno::Sequence< css::uno::Any >& seq, - sal_Int32 nArg, ::boost::optional< T >& v, Args&... args ) + sal_Int32 nArg, ::o3tl::optional< T >& v, Args&... args ) { if( nArg < seq.getLength() ) { |