diff options
author | louiz’ <louiz@louiz.org> | 2018-08-23 22:16:42 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-08-23 22:16:42 +0200 |
commit | 6c431b64d050a13853ebf3715fb6bf7986c0cff1 (patch) | |
tree | 6d1161328ed5bf4ac3edae7baab2be83545f2866 | |
parent | 8997021b2e43f61b6120ecce80b8097c3c451a48 (diff) | |
download | biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.gz biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.bz2 biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.xz biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.zip |
Fix one more warning
-rw-r--r-- | src/database/database.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/database.hpp b/src/database/database.hpp index f6b9d52..5fabadd 100644 --- a/src/database/database.hpp +++ b/src/database/database.hpp @@ -87,7 +87,7 @@ class Database struct Address: Column<std::string> { static constexpr auto name = "address_"; }; struct ThrottleLimit: Column<unsigned long int> { static constexpr auto name = "throttlelimit_"; - ThrottleLimit(): Column<std::size_t>(10) {} }; + ThrottleLimit(): Column<unsigned long int>(10) {} }; using MucLogLineTable = Table<Id, Uuid, Owner, IrcChanName, IrcServerName, Date, Body, Nick>; using MucLogLine = MucLogLineTable::RowType; |