Skip to content

Commit 24287a5

Browse files
committed
Remove unused variable
1 parent 58723a9 commit 24287a5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

base/base64.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ void decode_base64(const char* input, size_t n, buffer& output)
103103
output.resize(size);
104104

105105
auto outIt = output.begin();
106-
auto outEnd = output.end();
107106
size_t i = 0;
108107
for (; i+3<n; i+=4, input+=4) {
109108
*outIt = (((base64Inv(input[0]) ) << 2) |

0 commit comments

Comments
 (0)