This commit is contained in:
Adam D. Ruppe 2019-07-08 19:26:15 -04:00
parent 7c3e46d432
commit 6ba9aad211
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ string escapedVariants(Database db, in string sql, Variant[] t) {
if((i + 1) < sql.length) {
auto n = sql[i + 1];
if(n >= '0' && n <= '9') {
currentStart = i + 2;
currentStart = cast(int) i + 2;
idx = n - '0';
}
}