From 54b8f0970a91bf91687f75d5451efb8d6f2493e3 Mon Sep 17 00:00:00 2001 From: Raffi Enficiaud Date: Mon, 16 Mar 2015 23:44:18 +0100 Subject: [PATCH 1/2] =?UTF-8?q?fixing=20the=20warnings=20from=20the=20logs?= =?UTF-8?q?=20(thanks=20J=C3=BCrgen)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/boost/test/data/monomorphic/dataset.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/test/data/monomorphic/dataset.hpp b/include/boost/test/data/monomorphic/dataset.hpp index 5fc62ea9..3bdf3491 100755 --- a/include/boost/test/data/monomorphic/dataset.hpp +++ b/include/boost/test/data/monomorphic/dataset.hpp @@ -102,6 +102,9 @@ class dataset { public: //! Type of the samples in this dataset typedef T data_type; + + virtual ~dataset() + {} //! Interface of the dataset iterator class iterator { From f8a4f57a56b1dc4753ae18983838cd041e5fb402 Mon Sep 17 00:00:00 2001 From: Raffi Enficiaud Date: Mon, 16 Mar 2015 23:50:32 +0100 Subject: [PATCH 2/2] change log --- doc/closing_chapters/change_log.qbk | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/closing_chapters/change_log.qbk b/doc/closing_chapters/change_log.qbk index 7737f720..24475064 100644 --- a/doc/closing_chapters/change_log.qbk +++ b/doc/closing_chapters/change_log.qbk @@ -83,6 +83,7 @@ # [ticket 9581] Squassabia reference link gives 404 not found # [ticket 10318] Minor documentation fix # [ticket 10888] Assertion failures don't show up in the errors pane in VS 2010, VS 2012 or VS 2013 (duplicates) +# [ticket 11107] A lot of warnings on MSVC due to protected destructor being non-virtual