Commit 00e8aa87 authored by mogemimi's avatar mogemimi

Remove extra semicolon

parent 09ee46a8
...@@ -255,7 +255,7 @@ struct VectorIterator ...@@ -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_)) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment