diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-05 12:54:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-05 12:54:48 -0400 |
commit | 643e94897ba5fab0570d118a7aafc7772949d4e3 (patch) | |
tree | 0c9580cccee3bba95664eddef37572f496573cc3 /src/tinyxml2.cpp | |
parent | b1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 (diff) |
saving inventory
Diffstat (limited to 'src/tinyxml2.cpp')
-rwxr-xr-x | src/tinyxml2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tinyxml2.cpp b/src/tinyxml2.cpp index 7473881..d765357 100755 --- a/src/tinyxml2.cpp +++ b/src/tinyxml2.cpp @@ -409,17 +409,17 @@ void XMLUtil::ConvertUTF32ToUTF8(unsigned long input, char* output, int* length) --output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 3:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 2:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 1:
--output;
*output = (char)(input | FIRST_BYTE_MARK[*length]);
|