1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 17:59:36 +01:00

* Add an operation `nix-store -q --size'.

This commit is contained in:
Eelco Dolstra 2010-11-17 12:40:52 +00:00
parent 1db6259076
commit e60c962fb8
5 changed files with 40 additions and 10 deletions

View file

@ -70,6 +70,7 @@ struct SQLiteStmt
operator sqlite3_stmt * () { return stmt; }
void bind(const string & value);
void bind(int value);
void bind64(long long value);
void bind();
};