[Perl/perl5] cb6b3b: Avoid g++ warnings from last-element initialisers ...

2023-07-28 Thread Paul Evans via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: cb6b3bdbf08a1fd3b5f9c62fbf0b43efd85380ce
  
https://github.com/Perl/perl5/commit/cb6b3bdbf08a1fd3b5f9c62fbf0b43efd85380ce
  Author: Paul "LeoNerd" Evans 
  Date:   2023-07-28 (Fri, 28 Jul 2023)

  Changed paths:
M builtin.c
M class.c

  Log Message:
  ---
  Avoid g++ warnings from last-element initialisers in recently-added code

gcc was happy with this, but g++ complained

```
  builtin.c:511:1: warning: missing initializer for member 
‘BuiltinFuncDescriptor::xsub’ [-Wmissing-field-initializers]
511 | };
| ^
```




[Perl/perl5] 942fa8: locale.c: Remove "microperl" reference

2023-07-28 Thread Elvin Aslanov via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 942fa8d9f1544e653c19cda7de21085f49933a25
  
https://github.com/Perl/perl5/commit/942fa8d9f1544e653c19cda7de21085f49933a25
  Author: Elvin Aslanov 
  Date:   2023-07-28 (Fri, 28 Jul 2023)

  Changed paths:
M locale.c

  Log Message:
  ---
  locale.c: Remove "microperl" reference

Microperl got removed, and hence this statement no longer holds true.




[Perl/perl5] 8b1d87: perlapi: 'bytes' not chars for str(nlen|lcat|lcpy)

2023-07-28 Thread Karl Williamson via perl5-changes
  Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 8b1d87748fce84d05a0d43b51653cb41a387d0b5
  
https://github.com/Perl/perl5/commit/8b1d87748fce84d05a0d43b51653cb41a387d0b5
  Author: Karl Williamson 
  Date:   2023-07-28 (Fri, 28 Jul 2023)

  Changed paths:
M inline.h

  Log Message:
  ---
  perlapi: 'bytes' not chars for str(nlen|lcat|lcpy)

These functions operate on bytes, not characters.