summaryrefslogtreecommitdiff
path: root/sd/inc/sdmod.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc/sdmod.hxx')
-rw-r--r--sd/inc/sdmod.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx
index 4fca79b04b13..e1a2c51b6446 100644
--- a/sd/inc/sdmod.hxx
+++ b/sd/inc/sdmod.hxx
@@ -31,9 +31,9 @@
#include <sfx2/module.hxx>
#include <sal/types.h>
#include <vcl/virdev.hxx>
-#include <o3tl/span.hxx>
#include <map>
#include <memory>
+#include <span>
#include <string_view>
class SdOptions;
@@ -59,13 +59,13 @@ enum class SdOptionStreamMode
struct SdExtPropertySetInfoCacheCompare
{
- bool operator()(const o3tl::span<SfxItemPropertyMapEntry const>& lhs, const o3tl::span<SfxItemPropertyMapEntry const>& rhs) const
+ bool operator()(const std::span<SfxItemPropertyMapEntry const>& lhs, const std::span<SfxItemPropertyMapEntry const>& rhs) const
{
return lhs.data() < rhs.data();
}
};
typedef std::map<
- o3tl::span<SfxItemPropertyMapEntry const>,
+ std::span<SfxItemPropertyMapEntry const>,
css::uno::Reference<css::beans::XPropertySetInfo>,
SdExtPropertySetInfoCacheCompare > SdExtPropertySetInfoCache;
typedef std::map< SdrObjKind, css::uno::Sequence< css::uno::Type> > SdTypesCache;