mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-22 21:05:39 +00:00
clang reports: unclear || + && and &+| mixes.
This commit is contained in:
parent
1131ed15df
commit
c57b1a8b70
16 changed files with 30 additions and 28 deletions
|
|
@ -481,7 +481,7 @@ U32 oneUTF32toUTF8(const UTF32 codepoint, UTF8 *threeByteCodeunitBuf)
|
|||
// Process the 1st byte. filter based on the # of expected bytes.
|
||||
mask = sgByteMask8LUT[bytecount];
|
||||
marker = ( ~mask << 1 );
|
||||
threeByteCodeunitBuf[0] = marker | working & mask;
|
||||
threeByteCodeunitBuf[0] = marker | (working & mask);
|
||||
|
||||
PROFILE_END();
|
||||
return bytecount;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue