From 643e94897ba5fab0570d118a7aafc7772949d4e3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 5 Sep 2017 12:54:48 -0400 Subject: saving inventory --- src/tinyxml2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tinyxml2.cpp') 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]); -- cgit v1.2.3