We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2f8c5 commit be131f1Copy full SHA for be131f1
source/Metadata/Info.cpp
@@ -105,12 +105,16 @@ symbolType() const noexcept
105
// unknown RecordKeyKind
106
MRDOX_UNREACHABLE();
107
}
108
+ case InfoKind::Field:
109
+ return "data";
110
case InfoKind::Function:
111
return "function";
112
case InfoKind::Enum:
113
return "enum";
114
case InfoKind::Typedef:
115
return "typedef";
116
+ case InfoKind::Variable:
117
+ return "variable";
118
default:
119
// unknown InfoKind
120
0 commit comments