bricks: please gcc error=noexcept option

* bricks/brick-shmem: here.
This commit is contained in:
Etienne Renault 2017-03-17 13:49:41 +01:00
parent 1fc3d7f935
commit d3b143574b

View file

@ -91,7 +91,7 @@ struct Thread : T
virtual void start() noexcept
{
_thread.reset( new std::thread( [this]() { this->main(); } ) );
_thread.reset( new std::thread( [this]() noexcept { this->main(); } ) );
}
virtual void stop()