summaryrefslogtreecommitdiffstats
path: root/include/xmloff/xmlexppr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-25 11:24:15 +0200
committerNoel Grandin <noel@peralex.com>2015-08-26 08:26:51 +0200
commita05d6ac2a2a97081c6e9af1f9c8137fd91e739b6 (patch)
tree197658e9c09aadf8b48bf96cfe554b2afc435840 /include/xmloff/xmlexppr.hxx
parentvcl OpenGL program: Cache mvp matrix to reduce ~200 api calls per frame. (diff)
downloadcore-a05d6ac2a2a97081c6e9af1f9c8137fd91e739b6.tar.gz
core-a05d6ac2a2a97081c6e9af1f9c8137fd91e739b6.zip
Revert "create a macro to tidy up the declaration sites of o3tl::typed_flags_set"
sberg did not like this macro, let's see if I can find a better solution. This reverts commit e51fa143587d018b75db08e60cf27ff932b1cf8d.
Diffstat (limited to 'include/xmloff/xmlexppr.hxx')
-rw-r--r--include/xmloff/xmlexppr.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx
index 7739a557bc4d..9a67145d01fb 100644
--- a/include/xmloff/xmlexppr.hxx
+++ b/include/xmloff/xmlexppr.hxx
@@ -38,7 +38,10 @@ enum class SvXmlExportFlags {
// even if its empty
IGN_WS = 0x0008
};
-DECLARE_TYPED_FLAGS(SvXmlExportFlags, 0x000f)
+namespace o3tl
+{
+ template<> struct typed_flags<SvXmlExportFlags> : is_typed_flags<SvXmlExportFlags, 0xf> {};
+}
class SvXMLUnitConverter;
class SvXMLAttributeList;