Some of our supported compilers don't do constexpr, which means

o3tl::typed_flags can't be 'static const'

Change-Id: Ia2e40353f7a1b9e66617fa42f9eed6213f9e2d62
This commit is contained in:
Noel Grandin
2016-09-15 13:01:35 +02:00
parent 27be818190
commit 309b65a092
2 changed files with 4 additions and 1 deletions

View File

@@ -51,6 +51,9 @@ for fieldInfo, assignValues in fieldAssignDict.iteritems():
# Windows-only
if containingClass in ["SfxAppData_Impl", "sfx2::ImplDdeItem"]:
continue
# Some of our supported compilers don't do constexpr, which means o3tl::typed_flags can't be 'static const'
if containingClass in ["WaitWindow_Impl"]:
continue
v0 = fieldInfo[0] + " " + fieldInfo[1]
v1 = (",".join(assignValues))
v2 = ""