diff options
Diffstat (limited to 'src/tinyxml2.cpp')
-rwxr-xr-x | src/tinyxml2.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tinyxml2.cpp b/src/tinyxml2.cpp index 096ff5b..d765357 100755 --- a/src/tinyxml2.cpp +++ b/src/tinyxml2.cpp @@ -409,14 +409,17 @@ void XMLUtil::ConvertUTF32ToUTF8(unsigned long input, char* output, int* length) --output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
+ [[fallthrough]];
case 3:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
+ [[fallthrough]];
case 2:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
+ [[fallthrough]];
case 1:
--output;
*output = (char)(input | FIRST_BYTE_MARK[*length]);
|