Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Unified Diff: net/quic/platform/impl/quic_str_cat_impl.h

Issue 2851503002: Remove std::move from return statements. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/platform/impl/quic_ptr_util_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/platform/impl/quic_str_cat_impl.h
diff --git a/net/quic/platform/impl/quic_str_cat_impl.h b/net/quic/platform/impl/quic_str_cat_impl.h
index 3e07d64cbbc27674cc23611546371ddd7ac5fdfc..fae149d3cc88d1d3353e98b906e94a239d9d8bd8 100644
--- a/net/quic/platform/impl/quic_str_cat_impl.h
+++ b/net/quic/platform/impl/quic_str_cat_impl.h
@@ -22,7 +22,7 @@ inline std::string QuicStrCatImpl(const Args&... args) {
template <typename... Args>
inline std::string QuicStringPrintfImpl(const Args&... args) {
- return std::move(base::StringPrintf(std::forward<const Args&>(args)...));
+ return base::StringPrintf(std::forward<const Args&>(args)...);
}
} // namespace net
« no previous file with comments | « net/quic/platform/impl/quic_ptr_util_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698