Don't perform an extra clear

This commit is contained in:
Vinnie Falco
2016-05-04 08:45:42 -04:00
parent e62b9dc4c1
commit 7eed701682

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>