CesiumGS / cesium-native

Apache License 2.0
438 stars 215 forks source link

Changed `AccessorWriter` constructor to take `std::byte*` instead of `uint8_t*` #923

Closed lilleyse closed 4 months ago

lilleyse commented 4 months ago

Changed AccessorWriter constructor to take std::byte* instead of uint8_t* which matches the AccessorView constructor and prevents a compilation error.

lilleyse commented 4 months ago

I don't have the error handy right now, but it was about disallowed implicit conversion from uint8_t* to std::byte*

csciguy8 commented 4 months ago

Makes sense. Thanks!