Skip to content

Commit

Permalink
Merge pull request #157 from luca-schlecker/main
Browse files Browse the repository at this point in the history
http_response: fix move assign operator not moving file_info.
  • Loading branch information
The-EDev committed Jun 28, 2021
2 parents f95f115 + 0593f42 commit 3c6f242
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 3c6f242

Please sign in to comment.