On Fri, 4 Jun 2021 17:26:03 -0700 Aldrin <[email protected]> wrote: > Hello! > > I am trying to wrap some C++ code I have that uses arrow with R to enable > users to continue working in R. Unfortunately, I get a compilation error of > `arrow does not name a type` when it gets to the return type of my function > which is > `arrow::Result<std::shared_ptr<arrow::ipc::RecordBatchStreamReader>>`. I > posted in RStudio in case this is purely a cpp11 library issue happening ( > https://community.rstudio.com/t/cpp11-does-not-name-a-type/106740).
Did you include the Arrow headers? For example `#include "arrow/api.h"`?
