Skip to content
Snippets Groups Projects

[Fix] Memory leak due to containers serialization

Merged Maxence Naud requested to merge fix/GenericOp into standardization
Files
2
@@ -110,7 +110,7 @@ public:
@@ -110,7 +110,7 @@ public:
template<typename T, typename VT = _Decay_if_not_any<T>, std::enable_if_t<std::is_copy_constructible<VT>::value, bool> = true>
template<typename T, typename VT = _Decay_if_not_any<T>, std::enable_if_t<std::is_copy_constructible<VT>::value, bool> = true>
explicit _any(T&& value)
explicit _any(T&& value)
: _M_manager(&Manager<VT>::manage),
: _M_manager(&Manager<VT>::manage),
_M_data(new VT{std::forward<T>(value)})
_M_data(new VT{std::forward<T>(value)})
{}
{}
~_any()
~_any()
Loading