mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 14:43:20 +00:00
Void function return
Clang: void function should not return void expression [-Wpedantic]
(cherry picked from commit 144ab4ba99)
This commit is contained in:
parent
ecc33ac29a
commit
1d8673a885
1 changed files with 1 additions and 1 deletions
|
|
@ -1038,7 +1038,7 @@ static SDL_FunctionPointer OVR_EGL_GetProcAddress(SDL_VideoDevice *_this, const
|
|||
}
|
||||
static void OVR_EGL_UnloadLibrary(SDL_VideoDevice *_this)
|
||||
{
|
||||
return SDL_EGL_UnloadLibrary(_this);
|
||||
SDL_EGL_UnloadLibrary(_this);
|
||||
}
|
||||
static SDL_GLContext OVR_EGL_CreateContext(SDL_VideoDevice *_this, SDL_Window * window)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue