mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 04:21:13 +00:00
In some debug environments using vector[i] does bounds checking even though the standard specifies that it should not. Using *(vector.begin()) sidesteps this though, giving the same result without the bounds checking.