extended destructor workaround to MSVC 10.0

This commit is contained in:
Andrzej Krzemieński
2016-02-18 12:34:08 +01:00
parent 7ae2db7312
commit b38b64cee9

View File

@ -679,7 +679,7 @@ class optional : public optional_detail::optional_base<T>
#endif
#if BOOST_WORKAROUND(_MSC_VER, <= 1500)
#if BOOST_WORKAROUND(_MSC_VER, <= 1600)
// On old MSVC compilers the implicitly declared dtor is not called
~optional() {}
#else