fix bug in readBrackets

This commit is contained in:
Julian Daube 2017-10-08 03:49:54 +02:00
parent ccd3fa09a1
commit 25cb4747b8
1 changed files with 0 additions and 2 deletions

View File

@ -149,8 +149,6 @@ Substring readBrackets(Substring &input, const char * brackets) {
return Substring();
}
input.start++;
int depth = 1;
Substring result(input.start, input.start);