Commit ad03c707 authored by Max Kellermann's avatar Max Kellermann

event/TimerWheel: workaround for GCC9 bug

parent 7fe0095f
......@@ -35,7 +35,14 @@
#include <cassert>
TimerWheel::TimerWheel() noexcept = default;
TimerWheel::TimerWheel() noexcept
{
/* cannot use "=default" due to bug in GCC9 and older
("defaulted on its redeclaration with an
exception-specification that differs from the implicit
exception-specification") */
}
TimerWheel::~TimerWheel() noexcept = default;
void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment