Skip to content

Commit be131f1

Browse files
vinniefalcosdkrystian
authored andcommitted
fix: missing info kind tags
1 parent 4c2f8c5 commit be131f1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

source/Metadata/Info.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,16 @@ symbolType() const noexcept
105105
// unknown RecordKeyKind
106106
MRDOX_UNREACHABLE();
107107
}
108+
case InfoKind::Field:
109+
return "data";
108110
case InfoKind::Function:
109111
return "function";
110112
case InfoKind::Enum:
111113
return "enum";
112114
case InfoKind::Typedef:
113115
return "typedef";
116+
case InfoKind::Variable:
117+
return "variable";
114118
default:
115119
// unknown InfoKind
116120
MRDOX_UNREACHABLE();

0 commit comments

Comments
 (0)