Skip to content

Commit

Permalink
Remove override keyword from ReserveData(int64_t) method for BinaryBu…
Browse files Browse the repository at this point in the history
…ilder
  • Loading branch information
xuepanchen committed Jan 16, 2018
1 parent de318f4 commit b002e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ class ARROW_EXPORT BinaryBuilder : public ArrayBuilder {

Status Init(int64_t elements) override;
Status Resize(int64_t capacity) override;
Status ReserveData(int64_t bytes) override;
Status ReserveData(int64_t bytes);
Status FinishInternal(std::shared_ptr<ArrayData>* out) override;

/// \return size of values buffer so far
Expand Down

0 comments on commit b002e0b

Please sign in to comment.