Merge pull request #5740 from kivikakk/push-utvloulmsuqy

cxxrtl: Suppress another un/signed comparison warning!
This commit is contained in:
Catherine 2026-03-11 10:27:27 +00:00 committed by GitHub
commit 18d94fe9a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1119,7 +1119,7 @@ struct fmt_part {
case STRING: {
buf.reserve(Bits/8);
for (int i = 0; i < Bits; i += 8) {
for (size_t i = 0; i < Bits; i += 8) {
char ch = 0;
for (int j = 0; j < 8 && i + j < int(Bits); j++)
if (val.bit(i + j))