Skip to content

Commit

Permalink
馃洜 Fix missing variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Oct 2, 2022
1 parent 9c1452a commit b7f418b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class runtime_locale {
// needs to go into an intermediate buffer instead
code_unit intermediate_buffer[MB_LEN_MAX];

for (int times_around = 0;; ++times_around) {
for ([[maybe_unused]] int times_around = 0;; ++times_around) {
if (input.size() < 1) {
// no more input: everything is fine
return rtl_encode_result(input, output, current);
Expand Down

0 comments on commit b7f418b

Please sign in to comment.