mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-28 20:20:00 +00:00
Remove extra semicolon
This commit is contained in:
@@ -255,7 +255,7 @@ struct VectorIterator
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
VectorIterator(const uint8_t *data, uoffset_t i) :
|
VectorIterator(const uint8_t *data, uoffset_t i) :
|
||||||
data_(data + IndirectHelper<T>::element_stride * i) {};
|
data_(data + IndirectHelper<T>::element_stride * i) {}
|
||||||
VectorIterator(const VectorIterator &other) : data_(other.data_) {}
|
VectorIterator(const VectorIterator &other) : data_(other.data_) {}
|
||||||
#ifndef FLATBUFFERS_CPP98_STL
|
#ifndef FLATBUFFERS_CPP98_STL
|
||||||
VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}
|
VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user