Commit 39622d77 authored by Kenton Varda's avatar Kenton Varda

Make sure kj::Url is move-assignable.

parent 21789bff
......@@ -69,6 +69,7 @@ struct Url {
Url() = default;
Url(Url&&) = default;
~Url() noexcept(false);
Url& operator=(Url&&) = default;
inline Url(String&& scheme, Maybe<UserInfo>&& userInfo, String&& host, Array<String>&& path,
bool hasTrailingSlash, Array<QueryParam>&& query, Maybe<String>&& fragment)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment