From 00e8aa87b32b4a2dc71d1c799c0711aa294f8d46 Mon Sep 17 00:00:00 2001 From: mogemimi Date: Tue, 13 Sep 2016 20:59:57 +0900 Subject: [PATCH] Remove extra semicolon --- include/flatbuffers/flatbuffers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/flatbuffers/flatbuffers.h b/include/flatbuffers/flatbuffers.h index b193b1791..aefde0e61 100644 --- a/include/flatbuffers/flatbuffers.h +++ b/include/flatbuffers/flatbuffers.h @@ -255,7 +255,7 @@ struct VectorIterator public: VectorIterator(const uint8_t *data, uoffset_t i) : - data_(data + IndirectHelper::element_stride * i) {}; + data_(data + IndirectHelper::element_stride * i) {} VectorIterator(const VectorIterator &other) : data_(other.data_) {} #ifndef FLATBUFFERS_CPP98_STL VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}