mirror of
https://github.com/mangosfour/server.git
synced 2025-12-27 01:37:04 +00:00
[11318] Check for NaN values in IsValidMapCoord() functions.
Signed-off-by: Ambal <pogrebniak@gala.net>
This commit is contained in:
parent
8fd323a09a
commit
cce8f56160
3 changed files with 6 additions and 4 deletions
|
|
@ -125,11 +125,13 @@ typedef off_t ACE_OFF_T;
|
|||
# define snprintf _snprintf
|
||||
# define vsnprintf _vsnprintf
|
||||
# define finite(X) _finite(X)
|
||||
# define isnan(x) _isnan(x)
|
||||
|
||||
#else
|
||||
|
||||
# define stricmp strcasecmp
|
||||
# define strnicmp strncasecmp
|
||||
# define isnan(x) std::isnan(x)
|
||||
|
||||
# define I32FMT "%08X"
|
||||
# if ACE_SIZEOF_LONG == 8
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "11317"
|
||||
#define REVISION_NR "11318"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue