Closed lilleyse closed 4 months ago
Changed AccessorWriter constructor to take std::byte* instead of uint8_t* which matches the AccessorView constructor and prevents a compilation error.
AccessorWriter
std::byte*
uint8_t*
AccessorView
I don't have the error handy right now, but it was about disallowed implicit conversion from uint8_t* to std::byte*
Makes sense. Thanks!
Changed
AccessorWriter
constructor to takestd::byte*
instead ofuint8_t*
which matches theAccessorView
constructor and prevents a compilation error.