mcmtroffaes / inipp

Simple C++ ini parser.
MIT License
282 stars 53 forks source link

Code refactor #22

Closed GermanAizek closed 2 years ago

GermanAizek commented 2 years ago

Minor optimization inserts in std containers and type replacement for inipp::Ini<CharT>::Symbols std::list -> std::vector Contiguous placement of elements in memory can be more efficient.

mcmtroffaes commented 2 years ago

Thanks for this! Indeed, it makes more sense to use std::vector here.