summaryrefslogtreecommitdiff
path: root/src/database/row.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/row.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/row.hpp')
-rw-r--r--src/database/row.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/database/row.hpp b/src/database/row.hpp
index 130863a..4dc98be 100644
--- a/src/database/row.hpp
+++ b/src/database/row.hpp
@@ -42,7 +42,8 @@ struct Row
if (id.value == Id::unset_value)
{
this->insert(*db);
- std::get<Id>(this->columns).value = db->last_inserted_rowid;
+ if (db->last_inserted_rowid >= 0)
+ std::get<Id>(this->columns).value = static_cast<Id::real_type>(db->last_inserted_rowid);
}
else
this->update(*db);