Removed empty optional destructor

This commit is contained in:
Andrzej Krzemienski
2016-02-17 16:39:07 +01:00
parent 414728970a
commit 87ef503606

View File

@ -712,8 +712,6 @@ class optional : public optional_detail::optional_base<T>
{}
#endif
// No-throw (assuming T::~T() doesn't)
~optional() {}
#if !defined(BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT) && !defined(BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION)
// Assigns from an expression. See corresponding constructor.