diff options
-rw-r--r-- | src/utils/sdl2helper.cpp | 3 | ||||
-rw-r--r-- | src/utils/sdl2helper.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/utils/sdl2helper.cpp b/src/utils/sdl2helper.cpp index b36fd8733..ff50e29c8 100644 --- a/src/utils/sdl2helper.cpp +++ b/src/utils/sdl2helper.cpp @@ -88,7 +88,8 @@ bool SDL::getWindowWMInfo(SDL_Window *const window, SDL_SysWMinfo *const info) } SDL_Thread *SDL::createThread(SDL_ThreadFunction fn, - const char *const name, void *const data) + const char *restrict const name, + void *restrict const data) { return SDL_CreateThread(fn, name, data); } diff --git a/src/utils/sdl2helper.h b/src/utils/sdl2helper.h index 869fc1d21..7d2743815 100644 --- a/src/utils/sdl2helper.h +++ b/src/utils/sdl2helper.h @@ -49,7 +49,8 @@ namespace SDL bool getWindowWMInfo(SDL_Window *const window, SDL_SysWMinfo *const info); SDL_Thread *createThread(SDL_ThreadFunction fn, - const char *const name, void *const data); + const char *restrict const name, + void *restrict const data); } // namespace SDL #endif // USE_SDL2 |