Skip to content
Snippets Groups Projects
Commit 7ce04112 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix GCC warning about enum cases not covered in switch

parent 2bca5489
No related branches found
No related tags found
No related merge requests found
......@@ -318,8 +318,9 @@ bool unicode_is_zerowidth(enum unicode_codepoint u)
case UNICODE_VARIATION_SELECTOR_16:
case UNICODE_ZERO_WIDTH_NO_BREAK_SPACE:
return true;
default:
return false;
}
return false;
}
size_t unicode_width(enum unicode_codepoint u, size_t zerowidth)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment