ports: fix 'noux' compile error with GCC 8.3.0

Fixes #3348
This commit is contained in:
Christian Prochaska 2019-05-06 18:03:23 +02:00 committed by Christian Helmuth
parent 0777d16e78
commit 05a382b1a8

View File

@ -23,7 +23,11 @@ class Noux::Armed_timeout : Noncopyable
{
public:
struct State : Noncopyable { bool timed_out { }; };
struct State : Noncopyable
{
State() { }
bool timed_out { };
};
private: