- 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 <sys/types.h>
#include <sys/stat.h>
#include <stdint.h> // for uintprt_h
#endif // !WIN32
/***********************************************************************/

View file

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