~singpolyma/biboumi

6c431b64d050a13853ebf3715fb6bf7986c0cff1 — louiz’ 5 years ago 8997021
Fix one more warning
1 files changed, 1 insertions(+), 1 deletions(-)

M src/database/database.hpp
M src/database/database.hpp => src/database/database.hpp +1 -1
@@ 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;