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 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 {