TinyTinni / ValveFileVDF

C++ Parser and Writer for Valve Data Format (e.g. .vdf files used in steam)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pointers as iterators

PazerOP opened this issue · comments

Hey there, just found your library.

I noticed you rely on iterators having value_type as a member typedef in lots of places. Is there any chance of replacing these with decltype(*it)? That would allow pointers to be used as iterators, which can be an important speed optimization in debug builds.