Fix build on big endian architectures

This commit is contained in:
Matthew Bekkema 2013-04-20 10:51:11 +10:00
parent c45c530f74
commit 63ffb39d04
1 changed files with 16 additions and 16 deletions

View File

@ -802,7 +802,7 @@ public:
ustring16()
: array(0), allocated(1), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -816,7 +816,7 @@ public:
ustring16(const ustring16<TAlloc>& other)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -830,7 +830,7 @@ public:
ustring16(const string<B, A>& other)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -845,7 +845,7 @@ public:
ustring16(const std::basic_string<B, A, Alloc>& other)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -859,7 +859,7 @@ public:
ustring16(Itr first, Itr last)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -878,7 +878,7 @@ public:
ustring16(const char* const c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -893,7 +893,7 @@ public:
ustring16(const char* const c, u32 length)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -908,7 +908,7 @@ public:
ustring16(const uchar8_t* const c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -922,7 +922,7 @@ public:
ustring16(const char c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -936,7 +936,7 @@ public:
ustring16(const uchar8_t* const c, u32 length)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -950,7 +950,7 @@ public:
ustring16(const uchar16_t* const c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -964,7 +964,7 @@ public:
ustring16(const uchar16_t* const c, u32 length)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -978,7 +978,7 @@ public:
ustring16(const uchar32_t* const c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -992,7 +992,7 @@ public:
ustring16(const uchar32_t* const c, u32 length)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -1006,7 +1006,7 @@ public:
ustring16(const wchar_t* const c)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;
@ -1025,7 +1025,7 @@ public:
ustring16(const wchar_t* const c, u32 length)
: array(0), allocated(0), used(0)
{
#if __BIG_ENDIAN__
#ifdef __BIG_ENDIAN__
encoding = unicode::EUTFE_UTF16_BE;
#else
encoding = unicode::EUTFE_UTF16_LE;