owengage / fastnbt

Fast serde serializer and deserializer for Minecraft's NBT and Anvil formats
MIT License
185 stars 35 forks source link

Replace unsafe usage in fastanvil by const-init #94

Closed Nemo157 closed 11 months ago

Nemo157 commented 11 months ago

I was doing a quick audit of my dependencies and noticed this unnecessary unsafe usage. To make an array of !Copy but const-constructible types you just need to create a const value to use as the prototype in the array literal.

owengage commented 11 months ago

Looks great. Always good to get rid of some unsafe. :) Thank you.