Don't perform an extra clear

This commit is contained in:
Vinnie Falco 2016-05-04 08:45:42 -04:00
parent 79913e6759
commit 96e1e53cdd

View File

@ -136,8 +136,6 @@ basic_headers(basic_headers&& other)
, detail::basic_headers_base(
std::move(other.set_), std::move(other.list_))
{
other.list_.clear();
other.set_.clear();
}
template<class Allocator>