summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-08-23 22:16:42 +0200
committerlouiz’ <louiz@louiz.org>2018-08-23 22:16:42 +0200
commit6c431b64d050a13853ebf3715fb6bf7986c0cff1 (patch)
tree6d1161328ed5bf4ac3edae7baab2be83545f2866
parent8997021b2e43f61b6120ecce80b8097c3c451a48 (diff)
downloadbiboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.gz
biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.bz2
biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.tar.xz
biboumi-6c431b64d050a13853ebf3715fb6bf7986c0cff1.zip
Fix one more warning
-rw-r--r--src/database/database.hpp2
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;