Skip to content

Commit

Permalink
http_response: fix move assign operator not moving file_info.
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Schlecker <[email protected]>
  • Loading branch information
The-EDev committed Jun 28, 2021
1 parent fc27f73 commit 6a1623b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/crow/http_response.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ namespace crow
code = r.code;
headers = std::move(r.headers);
completed_ = r.completed_;
file_info = std::move(r.file_info);
return *this;
}

Expand Down

0 comments on commit 6a1623b

Please sign in to comment.