mirror of
https://github.com/Relintai/sfw.git
synced 2025-01-17 14:47:18 +01:00
Skip writing empty classes.
This commit is contained in:
parent
ee7dc76dec
commit
0a8ad4f33a
@ -53,7 +53,7 @@ String generate_section_class_list(const List<String> &list) {
|
|||||||
|
|
||||||
String sname = get_structure_name(c);
|
String sname = get_structure_name(c);
|
||||||
|
|
||||||
if (sname.begins_with("_")) {
|
if (sname.empty() || sname.begins_with("_")) {
|
||||||
//ERR_PRINT(sname);
|
//ERR_PRINT(sname);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user