Commit 8a0e12a1 by Christoph Kubisch

TType::getCompleteString insert optional structure name

parent b84a5204
......@@ -2019,6 +2019,11 @@ public:
// Add struct/block members
if (isStruct() && structure) {
if (typeName) {
appendStr(" ");
appendStr(typeName->c_str());
appendStr(" ");
}
appendStr("{");
for (size_t i = 0; i < structure->size(); ++i) {
if (! (*structure)[i].type->hiddenMember()) {
......
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