| Index: core/include/fxcrt/fx_string.h
|
| diff --git a/core/include/fxcrt/fx_string.h b/core/include/fxcrt/fx_string.h
|
| index 9903dad942bfae54bd617469fc1c1381f2df03a9..8fc9d79ebbddb3393d861ba762a69b32fa228e74 100644
|
| --- a/core/include/fxcrt/fx_string.h
|
| +++ b/core/include/fxcrt/fx_string.h
|
| @@ -121,7 +121,7 @@ public:
|
| return m_Length == 0;
|
| }
|
|
|
| - FX_BYTE GetAt(FX_STRSIZE index) const
|
| + uint8_t GetAt(FX_STRSIZE index) const
|
| {
|
| return m_Ptr[index];
|
| }
|
| @@ -140,7 +140,7 @@ public:
|
| return CFX_ByteStringC(m_Ptr + index, count);
|
| }
|
|
|
| - const FX_BYTE& operator[] (size_t index) const
|
| + const uint8_t& operator[] (size_t index) const
|
| {
|
| return m_Ptr[index];
|
| }
|
| @@ -279,12 +279,12 @@ public:
|
|
|
| const CFX_ByteString& operator += (FX_BSTR bstrc);
|
|
|
| - FX_BYTE GetAt(FX_STRSIZE nIndex) const
|
| + uint8_t GetAt(FX_STRSIZE nIndex) const
|
| {
|
| return m_pData ? m_pData->m_String[nIndex] : 0;
|
| }
|
|
|
| - FX_BYTE operator[](FX_STRSIZE nIndex) const
|
| + uint8_t operator[](FX_STRSIZE nIndex) const
|
| {
|
| return m_pData ? m_pData->m_String[nIndex] : 0;
|
| }
|
|
|