Address numbuf compiler warnings. (#300)

This commit is contained in:
Robert Nishihara
2017-02-20 22:42:03 -08:00
committed by Philipp Moritz
parent 334aed9fa9
commit 3e67d28922
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class FixedBufferStream : public arrow::io::OutputStream,
return arrow::Status::OK();
}
arrow::Status Read(int64_t nbytes, int64_t* bytes_read, uint8_t* out) {
arrow::Status Read(int64_t nbytes, int64_t* bytes_read, uint8_t* out) override {
assert(0);
return arrow::Status::OK();
}