Skip to content

Commit 7a2f1dc

Browse files
committed
geanygendoc: Sort tag types alphabetically
No functional changes, it just helps updating the table.
1 parent 63cd681 commit 7a2f1dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

geanygendoc/src/ggd-tag-utils.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,13 @@ static const struct {
252252
{ tm_tag_class_t, "class" },
253253
{ tm_tag_enum_t, "enum" },
254254
{ tm_tag_enumerator_t, "enumval" },
255+
{ tm_tag_externvar_t, "extern" },
255256
{ tm_tag_field_t, "field" },
256257
{ tm_tag_function_t, "function" },
257258
{ tm_tag_interface_t, "interface" },
258259
{ tm_tag_local_var_t, "local" },
260+
{ tm_tag_macro_t, "define" },
261+
{ tm_tag_macro_with_arg_t, "macro" },
259262
{ tm_tag_member_t, "member" },
260263
{ tm_tag_method_t, "method" },
261264
{ tm_tag_namespace_t, "namespace" },
@@ -264,10 +267,7 @@ static const struct {
264267
{ tm_tag_struct_t, "struct" },
265268
{ tm_tag_typedef_t, "typedef" },
266269
{ tm_tag_union_t, "union" },
267-
{ tm_tag_variable_t, "variable" },
268-
{ tm_tag_externvar_t, "extern" },
269-
{ tm_tag_macro_t, "define" },
270-
{ tm_tag_macro_with_arg_t, "macro" }
270+
{ tm_tag_variable_t, "variable" }
271271
};
272272

273273
/**

0 commit comments

Comments
 (0)