Skip to content

Commit aa152f9

Browse files
[k2] tiny fix (typo preventing K2 project compilation) (#1482)
* tiny fix * Remove useless move Signed-off-by: Petr Shumilov <p.shumilov@vkteam.ru> --------- Signed-off-by: Petr Shumilov <p.shumilov@vkteam.ru> Co-authored-by: Petr Shumilov <p.shumilov@vkteam.ru>
1 parent de18ce5 commit aa152f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runtime-light/stdlib/curl/curl-multi-functions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ inline auto f$curl_multi_select(kphp::web::curl::multi_type multi_id, double tim
209209
kphp::web::curl::print_error("could not select curl multi handle", std::move(res.error()));
210210
co_return multi_ctx.error_code;
211211
}
212-
co_return std::move(*res_;
212+
co_return *res;
213213
}
214214

215215
inline auto f$curl_multi_info_read(kphp::web::curl::multi_type multi_id,

0 commit comments

Comments
 (0)