Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
ad03c707
Commit
ad03c707
authored
Feb 12, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
event/TimerWheel: workaround for GCC9 bug
parent
7fe0095f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
TimerWheel.cxx
src/event/TimerWheel.cxx
+8
-1
No files found.
src/event/TimerWheel.cxx
View file @
ad03c707
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment