2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-26 19:12:10 +00:00

Merge branch 'local/11107-msvc_warnings_virtual_dtor' into develop

* local/11107-msvc_warnings_virtual_dtor:
  change log
  fixing the warnings from the logs (thanks Jürgen)
This commit is contained in:
Raffi Enficiaud
2015-03-17 13:57:20 +01:00
2 changed files with 4 additions and 0 deletions

View File

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

View File

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