mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 03:17:20 +02:00
my_global.h:
ulong was used before the line it have been declared include/my_global.h: ulong was used before the line it have been declared
This commit is contained in:
parent
824dd7f545
commit
3177fb553b
1 changed files with 2 additions and 2 deletions
|
|
@ -660,8 +660,6 @@ typedef long my_ptrdiff_t;
|
|||
typedef long long my_ptrdiff_t;
|
||||
#endif
|
||||
|
||||
/* typedef used for length of string; Should be unsigned! */
|
||||
typedef ulong size_str;
|
||||
|
||||
#define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1))
|
||||
#define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double))
|
||||
|
|
@ -739,6 +737,8 @@ typedef unsigned __int64 my_ulonglong;
|
|||
typedef unsigned long long my_ulonglong;
|
||||
#endif
|
||||
|
||||
/* typedef used for length of string; Should be unsigned! */
|
||||
typedef ulong size_str;
|
||||
|
||||
#ifdef USE_RAID
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue