FelixYBW commented on issue #5511:
URL:
https://github.com/apache/incubator-gluten/issues/5511#issuecomment-2094950416
A quick fix:
```
void clearAll() {
bits::fillBits(bits_.data(), 0, size_, false);
begin_ = 0;
end_ = 0;
#pragma GCC diagnostic ignored "-Wstringop-overflow"
allSelected_ = false;
#pragma GCC diagnostic pop
}
/**
* Sets the vector to all selected.
*/
void setAll() {
bits::fillBits(bits_.data(), 0, size_, true);
begin_ = 0;
end_ = size_;
#pragma GCC diagnostic ignored "-Wstringop-overflow"
allSelected_ = true;
#pragma GCC diagnostic pop
}
```
What GCC version does Velox use? why they can compile?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]