mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix missing return values in headers_t
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user