Cleanup: unused defines

This commit is contained in:
Campbell Barton 2014-08-08 02:07:15 +10:00
parent 0e9c677343
commit 29eb567288

@ -168,14 +168,10 @@ typedef struct PreviewImage {
#ifdef __BIG_ENDIAN__ #ifdef __BIG_ENDIAN__
/* big endian */ /* big endian */
# define MAKE_ID2(c, d) ( (c)<<8 | (d) ) # define MAKE_ID2(c, d) ((c) << 8 | (d))
# define MOST_SIG_BYTE 0
# define BBIG_ENDIAN
#else #else
/* little endian */ /* little endian */
# define MAKE_ID2(c, d) ( (d)<<8 | (c) ) # define MAKE_ID2(c, d) ((d) << 8 | (c))
# define MOST_SIG_BYTE 1
# define BLITTLE_ENDIAN
#endif #endif
/* ID from database */ /* ID from database */