summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 9d1642c..420a653 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -582,6 +582,11 @@ static void generateXMLForMember(MemberDef *md,FTextStream &ti,FTextStream &t,De
if (md->isStatic()) t << "yes"; else t << "no";
t << "\"";
+ if (md->isConstExpr())
+ {
+ t << " constexpr=\"yes\"";
+ }
+
if (isFunc)
{
ArgumentList *al = md->argumentList();