Skip writing empty classes.

This commit is contained in:
Relintai 2024-01-06 12:46:24 +01:00
parent ee7dc76dec
commit 0a8ad4f33a
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ String generate_section_class_list(const List<String> &list) {
String sname = get_structure_name(c);
if (sname.begins_with("_")) {
if (sname.empty() || sname.begins_with("_")) {
//ERR_PRINT(sname);
continue;
}