cppalliance / mrdocs

MrDocs: A Clang/LLVM tool for building reference documentation from C++ code and javadoc comments.
https://mrdocs.com
Other
69 stars 16 forks source link

don't explicitly store unset flags in dom::Object #418

Open vinniefalco opened 1 year ago

vinniefalco commented 1 year ago

When emitting flags / bitmasks, only insert the property key when the value is true. Absent properties evaluate to null which is equivalent to false, this will speed up template processing (and make debugging easier).

alandefreitas commented 2 months ago

Does this issue still make sense?