We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f21c0f commit 17f3d39Copy full SHA for 17f3d39
1 file changed
src/wasm/wasm-binary.cpp
@@ -1456,7 +1456,7 @@ static int32_t readBase64VLQ(std::istream& in) {
1456
uint32_t value = 0;
1457
uint32_t shift = 0;
1458
while (1) {
1459
- char ch = in.get();
+ auto ch = in.get();
1460
if (ch == EOF)
1461
throw MapParseException("unexpected EOF in the middle of VLQ");
1462
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch < 'g')) {
0 commit comments