summaryrefslogtreecommitdiff
path: root/src/database/query.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-01-28 14:10:14 +0100
committerlouiz’ <louiz@louiz.org>2018-01-28 14:10:14 +0100
commit9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5 (patch)
treea44bc9ca7e53cba40dbcc37a90d2fa79a0171bd5 /src/database/query.hpp
parent6e7ee320bc1256793bc11c4b00a8f4f89f407af4 (diff)
downloadbiboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.gz
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.bz2
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.xz
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.zip
This should fix the int conversion warning on 32bits arch
Diffstat (limited to 'src/database/query.hpp')
-rw-r--r--src/database/query.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/query.hpp b/src/database/query.hpp
index 547138f..8434944 100644
--- a/src/database/query.hpp
+++ b/src/database/query.hpp
@@ -12,7 +12,7 @@
#include <string>
void actual_bind(Statement& statement, const std::string& value, int index);
-void actual_bind(Statement& statement, const std::size_t value, int index);
+void actual_bind(Statement& statement, const std::int64_t value, int index);
void actual_bind(Statement& statement, const OptionalBool& value, int index);
#ifdef DEBUG_SQL_QUERIES