diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T12·40+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-11-17T12·40+0000 |
commit | e60c962fb8dd3d8be37c1f4ae08d5247901fa129 (patch) | |
tree | c8ac16743478164312460f897901d1731930dbd1 /src/libstore/local-store.hh | |
parent | 1db6259076b1b8f667451da8d2e44a55ece19056 (diff) |
* Add an operation `nix-store -q --size'.
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 2fd31c26d561..4076e595748a 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -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(); }; |