From 2e37d9d62a49e68156edafa84c6031267fe9bdf5 Mon Sep 17 00:00:00 2001 From: Peter De Wachter Date: Sun, 29 Jun 2014 11:50:18 +0200 Subject: [PATCH] Import lest v1.8.0 --- test/lest.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/lest.hpp b/test/lest.hpp index caf2d56..efc9442 100644 --- a/test/lest.hpp +++ b/test/lest.hpp @@ -108,6 +108,8 @@ struct message : std::runtime_error const location where; const comment note; + ~message() throw() {} // GCC 4.6 + message( std::string kind, location where, std::string expr, std::string note = "" ) : std::runtime_error{ expr }, kind{ kind }, where{ where }, note{ note } {} };