Have this struct (C): ``` struct GitStatusEntry { QString filename; GitFileStatus status; bool checked = false; }; ``` This is folded as: ``` struct GitStatusEntry { QString filename; ``` While expecting: ``` struct GitStatusEntry { }; ```
Have this struct (C):
This is folded as:
While expecting: