diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-09-30 01:25:53 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-09-30 01:25:53 +0200 |
commit | dd5eb7ae6781e963c6eb20049087c3f3c7e7b510 (patch) | |
tree | 0515a85d4381f1656e236112ae00207b81618f73 /storage/connect | |
parent | e4ff01e47d4ac9a95dda688ac709b22186559422 (diff) | |
download | mariadb-git-dd5eb7ae6781e963c6eb20049087c3f3c7e7b510.tar.gz |
- Add #include <stdint> needed by GCC to declare uintptr_t
modified:
storage/connect/array.cpp
storage/connect/filamap.cpp
Diffstat (limited to 'storage/connect')
-rw-r--r-- | storage/connect/array.cpp | 1 | ||||
-rw-r--r-- | storage/connect/filamap.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/storage/connect/array.cpp b/storage/connect/array.cpp index 9c679456b68..2519191f6e6 100644 --- a/storage/connect/array.cpp +++ b/storage/connect/array.cpp @@ -25,6 +25,7 @@ #include <string.h> #include <sys/types.h> #include <sys/stat.h> +#include <stdint.h> // for uintprt_h #endif // !WIN32 /***********************************************************************/ diff --git a/storage/connect/filamap.cpp b/storage/connect/filamap.cpp index d79296a8497..85ad3865237 100644 --- a/storage/connect/filamap.cpp +++ b/storage/connect/filamap.cpp @@ -30,6 +30,7 @@ #include <io.h> #endif // !UNIX #include <fcntl.h> +#include <stdint.h> // for uintprt_h #endif // !WIN32 /***********************************************************************/ |