From 89de77ff7ed0c1a7ddbc39dd074720c86e866d3f Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Fri, 3 Feb 2012 22:11:58 +0000 Subject: [PATCH] Added virtual d'tor with throw spec which was not checked by MSVC [SVN r76861] --- .../boost/geometry/algorithms/detail/overlay/get_turn_info.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/geometry/algorithms/detail/overlay/get_turn_info.hpp b/include/boost/geometry/algorithms/detail/overlay/get_turn_info.hpp index 782c04469..663d70d9a 100644 --- a/include/boost/geometry/algorithms/detail/overlay/get_turn_info.hpp +++ b/include/boost/geometry/algorithms/detail/overlay/get_turn_info.hpp @@ -36,6 +36,9 @@ public: message += method; } + virtual ~turn_info_exception() throw() + {} + virtual char const* what() const throw() { return message.c_str();