Fix missing return values in headers_t

This commit is contained in:
Vinnie Falco
2014-08-05 16:43:13 -07:00
parent 5b8bb822ba
commit bf403a6142

View File

@@ -124,6 +124,7 @@ private:
{
list_ = std::move(other.list_);
set_ = std::move(other.set_);
return *this;
}
headers_t&
@@ -132,6 +133,7 @@ private:
clear();
for (auto const& e : other.list_)
append (e.field, e.value);
return *this;
}
void