mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-06 13:37:25 +00:00
Fixed operator++. Added CreateXXX for vector types.
This commit is contained in:
@@ -288,7 +288,7 @@ public:
|
||||
}
|
||||
|
||||
VectorIterator operator++(int) {
|
||||
VectorIterator temp(data_);
|
||||
VectorIterator temp(data_,0);
|
||||
data_ += IndirectHelper<T>::element_stride;
|
||||
return temp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user