llohse / libnpy

C++ library for reading and writing of numpy's .npy files
MIT License
373 stars 71 forks source link

Avoid warnings in library because of unused params #11

Closed arhuaco closed 4 years ago

arhuaco commented 4 years ago

Warnings in Typestring constuctors are verbose. They appear when compiling with -Wextra. Let's tell the compiler the parameters will not be used.

llohse commented 4 years ago

Thanks for bringing this up! I am unsure however, whether misleading the compiler to silence the warnings here, is the best way to go. I will look into this.

arhuaco commented 4 years ago

Thanks for looking into it. Best regards.