From 4748b8009abf3b7320fba70de93fd2668a2e498c Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 23 Jun 2019 16:49:50 -0400 Subject: [PATCH] spurious deprecations --- sqlite.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sqlite.d b/sqlite.d index 6efeb58..2450df3 100644 --- a/sqlite.d +++ b/sqlite.d @@ -113,8 +113,8 @@ class Sqlite : Database { override ResultSet queryImpl(string sql, Variant[] args...) { auto s = Statement(this, sql); - foreach(int i, arg; args) { - s.bind(i + 1, arg); + foreach(i, arg; args) { + s.bind(cast(int) i + 1, arg); } return s.execute(); @@ -195,9 +195,9 @@ class Sqlite : Database { class SqliteResult : ResultSet { int getFieldIndex(string field) { - foreach(int i, n; columnNames) + foreach(i, n; columnNames) if(n == field) - return i; + return cast(int) i; throw new Exception("no such field " ~ field); }