diff options
Diffstat (limited to 'include/comphelper/optional.hxx')
-rw-r--r-- | include/comphelper/optional.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/comphelper/optional.hxx b/include/comphelper/optional.hxx index 5ea8bb7ba242..920eeba83ee0 100644 --- a/include/comphelper/optional.hxx +++ b/include/comphelper/optional.hxx @@ -33,8 +33,7 @@ inline ::boost::optional<T> make_optional( T const& v ) } template <typename T> -inline ::boost::optional<T> make_optional( - ::com::sun::star::beans::Optional<T> const& o ) +inline ::boost::optional<T> make_optional( css::beans::Optional<T> const& o ) { if (o.IsPresent) return ::boost::optional<T>(o.Value); |