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.
2 parents 027dccd + 172f82b commit 7c6a801Copy full SHA for 7c6a801
plugin/mutate/source/dextool/plugin/mutate/backend/database/standalone.d
@@ -2418,7 +2418,7 @@ struct DbSchema {
2418
void removeMutantProbability(const Checksum64 p) @trusted {
2419
static immutable sql = format!"DELETE FROM %1$s WHERE path=:path"(schemaMutantQTable);
2420
auto stmt = db.prepare(sql);
2421
- stmt.get.bind(":path", p.c0);
+ stmt.get.bind(":path", cast(long) p.c0);
2422
stmt.get.execute;
2423
}
2424
0 commit comments