1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

- Add #include <stdint> needed by GCC to declare uintptr_t

modified:
  storage/connect/array.cpp
  storage/connect/filamap.cpp
This commit is contained in:
Olivier Bertrand
2014-09-30 01:25:53 +02:00
parent e4ff01e47d
commit dd5eb7ae67
2 changed files with 2 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <stdint.h> // for uintprt_h
#endif // !WIN32 #endif // !WIN32
/***********************************************************************/ /***********************************************************************/

View File

@@ -30,6 +30,7 @@
#include <io.h> #include <io.h>
#endif // !UNIX #endif // !UNIX
#include <fcntl.h> #include <fcntl.h>
#include <stdint.h> // for uintprt_h
#endif // !WIN32 #endif // !WIN32
/***********************************************************************/ /***********************************************************************/