فهرست منبع

LibGL: Remove unnecessary `break;` from SoftwareGLContext

Jelle Raaijmakers 3 سال پیش
والد
کامیت
4abd6aa198
1فایلهای تغییر یافته به همراه0 افزوده شده و 1 حذف شده
  1. 0 1
      Userland/Libraries/LibGL/SoftwareGLContext.cpp

+ 0 - 1
Userland/Libraries/LibGL/SoftwareGLContext.cpp

@@ -1421,7 +1421,6 @@ void SoftwareGLContext::gl_bind_texture(GLenum target, GLuint texture)
             break;
         default:
             VERIFY_NOT_REACHED();
-            break;
         }
 
         m_allocated_textures.set(texture, texture_object);