Kaydet (Commit) e5b98fd9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix "specialization in different namespace" error with old GCCs

Change-Id: I8b2c678ec70de3432bb335d7e76487ef44cd72a6
üst bad797db
...@@ -64,8 +64,12 @@ enum class SfxCallMode : sal_uInt16 ...@@ -64,8 +64,12 @@ enum class SfxCallMode : sal_uInt16
MODAL = 0x10 // despite ModalMode MODAL = 0x10 // despite ModalMode
}; };
template<> struct o3tl::typed_flags<SfxCallMode>: namespace o3tl {
o3tl::is_typed_flags<SfxCallMode, 0x1F> {};
template<> struct typed_flags<SfxCallMode>: is_typed_flags<SfxCallMode, 0x1F>
{};
}
class SFX2_DLLPUBLIC SfxBindings: public SfxBroadcaster class SFX2_DLLPUBLIC SfxBindings: public SfxBroadcaster
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment