Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 1829598c6e4e29da89d73624e461aaffd983fde3
https://github.com/Perl/perl5/commit/1829598c6e4e29da89d73624e461aaffd983fde3
Author: Bart Van Assche <[email protected]>
Date: 2022-12-13 (Tue, 13 Dec 2022)
Changed paths:
M AUTHORS
M hv_func.h
M hv_macro.h
M inline.h
M sbox32_hash.h
M zaphod32_hash.h
Log Message:
-----------
Do not cast away constness
Fix most compiler warnings caused by building Perl extensions with
-Wcast-qual. This is realized by changing the type of multiple T *
arguments into const T * and by changing a few (T *) casts
into (const T *).