Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHandle loading of bool* correctly #228
Open
Comments
|
Note I am using uvector here because std::vector uses a bitmask ... :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, it's not possible to load from a bool pointer.
E.g.
fails with substitution errors.
Now it's actually a question what we should do here. Maybe we should map bools to batches with sizeof(bool) elements? batch<char, 8>(bool*)...