mirror of
https://github.com/google/flatbuffers.git
synced 2026-08-04 15:59:48 +00:00
86b505e412
* [C++] Remove std::iterator usage (#4340) Inheriting from std::iterator has never been required, and it's deprecated in C++17. It can be replaced by directly providing typedefs. Include <iterator> for std::random_access_iterator_tag. Note that structs default to public access control. * [C++] Change whitespace style in typedefs.