isc_throw(BadValue, "Time value is too large: " << expire_time_64);
}
- const time_t expire_time = static_cast<const time_t>(expire_time_64);
+ const time_t expire_time = static_cast<time_t>(expire_time_64);
// Convert to broken-out time
struct tm expire_tm;
ASSERT_NO_THROW(conn_.selectQuery(MySqlConnectionTest::GET_BY_INT_VALUE,
in_bindings, out_bindings,
- [&deleted](MySqlBindingCollection& out_bindings) {
+ [&deleted](MySqlBindingCollection&) {
// This will be executed if the row is returned as a result of
// select query. We expect that this is not executed.
deleted = false;