From d3b143574b97fe85dae67b67a1657fddcb1e5de5 Mon Sep 17 00:00:00 2001 From: Etienne Renault Date: Fri, 17 Mar 2017 13:49:41 +0100 Subject: [PATCH] bricks: please gcc error=noexcept option * bricks/brick-shmem: here. --- bricks/brick-shmem | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/brick-shmem b/bricks/brick-shmem index 88da224a0..d5fc92989 100644 --- a/bricks/brick-shmem +++ b/bricks/brick-shmem @@ -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()