fix(tvix): sqlite bind argument number is signed

third_party/nix/src/libstore/sqlite.cc:89:33: warning: narrowing conversion from 'unsigned int' to signed type 'int' is implementation-defined [bugprone-narrowing-conversions]

Change-Id: I1dbc01acaecc4f382f63e7108429cd814ff05f4f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2155
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
Kane York 2020-11-26 17:19:01 -08:00 committed by kanepyork
parent 73ea049037
commit 35bd980bd1

View file

@ -45,7 +45,7 @@ struct SQLiteStmt {
private:
SQLiteStmt& stmt;
unsigned int curArg = 1;
int curArg = 1;
Use(SQLiteStmt& stmt);
public: