From 785cf09730d01eb28f3635200e9c058e90b9f66a Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Thu, 5 Nov 2009 19:35:42 +0000 Subject: [PATCH] "Fixing" lame GCC warning [SVN r57419] --- include/boost/exception/detail/exception_ptr_base.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/boost/exception/detail/exception_ptr_base.hpp b/include/boost/exception/detail/exception_ptr_base.hpp index d84cde8..ac68cab 100644 --- a/include/boost/exception/detail/exception_ptr_base.hpp +++ b/include/boost/exception/detail/exception_ptr_base.hpp @@ -22,7 +22,10 @@ boost protected: - ~exception_ptr_base() throw() { } + virtual + ~exception_ptr_base() throw() + { + } }; } }