mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-15 01:08:26 +00:00
Don't use const for non-pointer API parameters
This commit is contained in:
parent
d2b2a752ce
commit
d5fe6dd627
2 changed files with 2 additions and 2 deletions
|
@ -232,7 +232,7 @@ bool SDLCALL SDLTest_CommonInit(SDLTest_CommonState *state);
|
|||
*
|
||||
* \returns false if app should quit, true otherwise.
|
||||
*/
|
||||
bool SDLCALL SDLTest_CommonDefaultArgs(SDLTest_CommonState *state, const int argc, char **argv);
|
||||
bool SDLCALL SDLTest_CommonDefaultArgs(SDLTest_CommonState *state, int argc, char **argv);
|
||||
|
||||
/**
|
||||
* Print the details of an event.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue