mirror of
https://github.com/google/flatbuffers.git
synced 2026-08-04 06:55:19 +00:00
97face1527
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.