mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-30 14:29:23 +00:00
Sort out shared pre-compiled header usage
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
3325b07a28
commit
46b7acb69a
@ -11,6 +11,7 @@
|
||||
#include <string>
|
||||
#include <array>
|
||||
#include <vector>
|
||||
#include <bitset>
|
||||
|
||||
#if defined(_M_X64) || defined(_M_IX86 )
|
||||
# define HOST_LITTLE_ENDIAN
|
||||
|
@ -4,6 +4,12 @@
|
||||
#include <cstdint>
|
||||
#include <string>
|
||||
|
||||
#if defined(_M_X64) || defined(_M_IX86 )
|
||||
# define HOST_LITTLE_ENDIAN
|
||||
#else
|
||||
# define HOST_BIG_ENDIAN
|
||||
#endif
|
||||
|
||||
namespace EightBit {
|
||||
|
||||
typedef union {
|
||||
|
@ -10,10 +10,4 @@
|
||||
|
||||
#include <string>
|
||||
#include <array>
|
||||
#include <vector>
|
||||
|
||||
#if defined(_M_X64) || defined(_M_IX86 )
|
||||
# define HOST_LITTLE_ENDIAN
|
||||
#else
|
||||
# define HOST_BIG_ENDIAN
|
||||
#endif
|
||||
#include <vector>
|
Loading…
Reference in New Issue
Block a user