raulcd commented on PR #44813:
URL: https://github.com/apache/arrow/pull/44813#issuecomment-2503753933

   This is the error I get:
   ```
   code/arrow/cpp/src/arrow/array/builder_primitive.h:474:46:
           note:   no known conversion for argument 1 from ‘std::vector<bool>’ 
to ‘arrow::util::span<bool>’
     474 |   Status AppendValues(const util::span<bool> values);
         |                       ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
   ```
   when trying to convert on this test:
   ```
     BooleanBuilder builder;
     std::vector<bool> zeros(length);
     ASSERT_OK(builder.AppendValues(zeros));
   ```
   @bkietz my C++ skills aren't great but shouldn't we be able to use 
‘std::vector<bool>’ for our span?


-- 
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]

Reply via email to