Remove extra semicolon

This commit is contained in:
mogemimi 2016-09-13 20:59:57 +09:00
parent 09ee46a83e
commit 00e8aa87b3
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ struct VectorIterator
public:
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_) {}
#ifndef FLATBUFFERS_CPP98_STL
VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}