Corrected function signature on SDL_strtod_inline() (thanks, Axel!).
Fixes Bugzilla #1774.
This commit is contained in:
parent
d7b0215c79
commit
8c6b9f4743
1 changed files with 1 additions and 1 deletions
|
@ -592,7 +592,7 @@ SDL_FORCE_INLINE Uint64 SDL_strtoull_inline(const char *str, char **endp, int ba
|
||||||
|
|
||||||
extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp);
|
extern DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp);
|
||||||
#ifdef HAVE_STRTOD
|
#ifdef HAVE_STRTOD
|
||||||
SDL_FORCE_INLINE Uint64 SDL_strtod_inline(const char *str, char **endp) { return strtod(str, endp); }
|
SDL_FORCE_INLINE double SDL_strtod_inline(const char *str, char **endp) { return strtod(str, endp); }
|
||||||
#define SDL_strtod SDL_strtod_inline
|
#define SDL_strtod SDL_strtod_inline
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue