mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-02 02:31:45 +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 <string>
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <bitset>
|
||||||
|
|
||||||
#if defined(_M_X64) || defined(_M_IX86 )
|
#if defined(_M_X64) || defined(_M_IX86 )
|
||||||
# define HOST_LITTLE_ENDIAN
|
# define HOST_LITTLE_ENDIAN
|
||||||
|
@ -4,6 +4,12 @@
|
|||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#if defined(_M_X64) || defined(_M_IX86 )
|
||||||
|
# define HOST_LITTLE_ENDIAN
|
||||||
|
#else
|
||||||
|
# define HOST_BIG_ENDIAN
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace EightBit {
|
namespace EightBit {
|
||||||
|
|
||||||
typedef union {
|
typedef union {
|
||||||
|
@ -10,10 +10,4 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#if defined(_M_X64) || defined(_M_IX86 )
|
|
||||||
# define HOST_LITTLE_ENDIAN
|
|
||||||
#else
|
|
||||||
# define HOST_BIG_ENDIAN
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user