little things

This commit is contained in:
Adam D. Ruppe 2021-11-27 22:21:05 -05:00
parent fa500f2774
commit 671aacf86d
5 changed files with 17 additions and 6 deletions

View file

@ -46,7 +46,7 @@ import std.conv;
scope(exit))
*/
Sqlite openDBAndCreateIfNotPresent(string filename, string sql, void delegate(Sqlite db) initialize = null){
Sqlite openDBAndCreateIfNotPresent(string filename, string sql, scope void delegate(Sqlite db) initialize = null){
if(exists(filename))
return new Sqlite(filename);
else {