mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +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);
|
||||
|
||||
if (sname.begins_with("_")) {
|
||||
if (sname.empty() || sname.begins_with("_")) {
|
||||
//ERR_PRINT(sname);
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user