Ben Gardner
c4ab49201b
Fix compile warning when appending UTF-8/ASCII strings to ustring16
...
String constants are (const char *), but UTF-8 strings must be treated as
an array of bytes when fiddling with the bits.
The following comparison fails without this change, as uchar8_t is a
signed char, which cannot be 0xC0:
const uchar8_t* c2 = other;
...
else if (c2[l] == 0xC0 || c2[l] == 0xC1)
...
2023-04-15 09:43:40 +02:00
Vitaliy
5a5a7d04b7
Drop IrrCompileConfig ( #163 )
2023-03-11 15:04:09 +01:00
Desour
09e6eeb65b
Remove irr::core::hash
...
Its use of std::unary_function was deprecated.
And it wasn't used anywhere.
2023-02-22 11:43:42 +01:00
Desour
839bdc1a65
Fix -Wignored-qualifiers warnings in irrUString.h
2023-02-22 11:43:42 +01:00
sfan5
05a00a8d91
Completely remove irrAllocator
2022-12-23 19:56:21 +01:00
sfan5
07fd32da50
Replace core::string implementation with std::basic_string
2022-12-23 19:17:08 +01:00
sfan5
75b4c05741
Drop _IRR_WCHAR_FILESYSTEM
...
never used and never worked for us.
2021-08-30 20:55:06 +02:00
Loïc Blot
04bc02fc22
Cleanup C++0x support in irrUString.h ( #33 )
2021-04-28 10:12:29 +02:00
Loic Blot
ff737e113c
Include irrUString directly in irrlicht
...
it's a derivate from irrString and originate from irrlicht, legitimate a return back to home
2021-03-25 13:35:51 +01:00