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:
parent
73ea049037
commit
35bd980bd1
1 changed files with 1 additions and 1 deletions
2
third_party/nix/src/libstore/sqlite.hh
vendored
2
third_party/nix/src/libstore/sqlite.hh
vendored
|
@ -45,7 +45,7 @@ struct SQLiteStmt {
|
|||
|
||||
private:
|
||||
SQLiteStmt& stmt;
|
||||
unsigned int curArg = 1;
|
||||
int curArg = 1;
|
||||
Use(SQLiteStmt& stmt);
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue