1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

Libraries: Fix -Wunreachable-code warnings from clang

This commit is contained in:
Nico Weber 2021-10-08 08:34:12 -04:00 committed by Andreas Kling
parent 96666f3209
commit b8dc3661ac
10 changed files with 7 additions and 27 deletions

View file

@ -43,7 +43,6 @@ static constexpr float wrap(float value, GLint mode)
case GL_MIRRORED_REPEAT:
return wrap_mirrored_repeat(value);
break;
default:
VERIFY_NOT_REACHED();