diff --git a/components/bsa/bsa_file.hpp b/components/bsa/bsa_file.hpp index 0e693dfdf..7ec101b43 100644 --- a/components/bsa/bsa_file.hpp +++ b/components/bsa/bsa_file.hpp @@ -25,9 +25,8 @@ #define _BSA_FILE_H_ #include - -#include -#include +#include +#include #include #include #include diff --git a/components/esm/esm_reader.hpp b/components/esm/esm_reader.hpp index d4f6f48ca..c03f1d162 100644 --- a/components/esm/esm_reader.hpp +++ b/components/esm/esm_reader.hpp @@ -2,7 +2,7 @@ #define _ESM_READER_H #include -#include +#include #include #include #include diff --git a/components/misc/stringops.cpp b/components/misc/stringops.cpp index 1b1ee0c57..f6b63372c 100644 --- a/components/misc/stringops.cpp +++ b/components/misc/stringops.cpp @@ -1,7 +1,7 @@ #include "stringops.hpp" #include -#include +#include bool begins(const char* str1, const char* str2) { diff --git a/libs/platform/stdint.h b/libs/platform/stdint.h index c1a430e87..499590da7 100644 --- a/libs/platform/stdint.h +++ b/libs/platform/stdint.h @@ -2,10 +2,12 @@ #ifndef _STDINT_WRAPPER_H #define _STDINT_WRAPPER_H -typedef int int32_t; -typedef unsigned int uint32_t; +#include -typedef long long int64_t; -typedef unsigned long long uint64_t; +// Pull the boost names into the global namespace for convenience +using boost::int32_t; +using boost::uint32_t; +using boost::int64_t; +using boost::uint64_t; #endif