mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-09-22 13:01:05 +03:00
Refactor IniFile storage to keep keys and values in unified SmallVector-backed records, avoiding parallel vector growth and allocations for common small configurations. Use std::string_view by value throughout the IniFile input API to prevent temporary std::string allocations for keys, value names, paths, and comments. Write serialized components directly to streams instead of constructing a temporary string for every line. Return ProjectBuildConfiguration by const reference to avoid copying it during project saves, and use inline storage for DocumentView visual lines to avoid heap allocations while rendering the code editor minimap. Add IniFile tests covering parsing, mutation, ordered serialization, and a byte-for-byte ecode project-state round trip.