From ab520f4e97ad5e9b01c0f08cda868d9690d35aff Mon Sep 17 00:00:00 2001 From: Daniel Griscom Date: Mon, 20 Jan 2020 21:41:08 -0500 Subject: [PATCH] Removed unneeded 'using uchar = unsigned char' --- src/catch2/catch_xmlwriter.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/catch2/catch_xmlwriter.cpp b/src/catch2/catch_xmlwriter.cpp index a39d4a1b..4eed4ef7 100644 --- a/src/catch2/catch_xmlwriter.cpp +++ b/src/catch2/catch_xmlwriter.cpp @@ -12,8 +12,6 @@ #include #include -using uchar = unsigned char; - namespace Catch { namespace { @@ -87,7 +85,7 @@ namespace { // (see: http://www.w3.org/TR/xml/#syntax) for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) { - uchar c = m_str[idx]; + unsigned char c = m_str[idx]; switch (c) { case '<': os << "<"; break; case '&': os << "&"; break; @@ -147,7 +145,7 @@ namespace { bool valid = true; uint32_t value = headerValue(c); for (std::size_t n = 1; n < encBytes; ++n) { - uchar nc = m_str[idx + n]; + unsigned char nc = m_str[idx + n]; valid &= ((nc & 0xC0) == 0x80); value = (value << 6) | (nc & 0x3F); }