Copilot commented on code in PR #13470:
URL: https://github.com/apache/trafficserver/pull/13470#discussion_r3695451998


##########
src/config/ssl_multicert.cc:
##########
@@ -281,7 +281,7 @@ SSLMultiCertParser::parse_yaml(std::string_view content)
     return {result, swoc::Errata("YAML parse error: {}", ex.what())};
   }
 
-  return {result, std::move(errata)};
+  return {std::move(result), std::move(errata)};

Review Comment:
   This file now uses std::move in return statements, but does not include 
<utility>, which is the standard header that declares std::move. Relying on 
transitive includes can break builds across standard library implementations or 
future refactors; add an explicit <utility> include in this translation unit.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to