paleolimbot opened a new pull request, #12823:
URL: https://github.com/apache/arrow/pull/12823
After ARROW-16033 (#12721) we get this compiler warning when compiling with
`ARROW_R_WITH_ENGINE`:
```
compute-exec.cpp:304:17: warning: 'Init' overrides a member function but
is not marked 'override' [-Winconsistent-missing-override]
arrow::Status Init(const std::shared_ptr<arrow::Schema>& schema) {
^
/Users/deweydunnington/.r-arrow-dev-build/dist/include/arrow/compute/exec/options.h:153:18:
note: overridden virtual function is here
virtual Status Init(const std::shared_ptr<Schema>& schema) = 0;
^
1 warning generated.
```
This PR just adds the requisite `override`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]