We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67c3752 commit c4d8027Copy full SHA for c4d8027
src/Common/Base32.h
@@ -67,7 +67,7 @@ struct Base32<Traits, Base32NaiveTag>
67
68
if (bits_left > 0)
69
{
70
- dst[opos++] = Traits::encodeChar(buffer << (5 - bits_left)) & 0x1F);
+ dst[opos++] = Traits::encodeChar((buffer << (5 - bits_left)) & 0x1F);
71
}
72
73
while (opos % 8 != 0)
0 commit comments