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

Unified Diff: net/quic/core/crypto/crypto_server_test.cc

Issue 2314863003: Fix all Performance and Bug-Prone patterns in quic/core. No functional change. Not flag protected. (Closed)
Patch Set: Created 4 years, 3 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
Index: net/quic/core/crypto/crypto_server_test.cc
diff --git a/net/quic/core/crypto/crypto_server_test.cc b/net/quic/core/crypto/crypto_server_test.cc
index bcd430ecd317d3c6e1d998c7f61d4ecd4d467a0d..974f319416187c4d77f58c2334141f57e893b0b8 100644
--- a/net/quic/core/crypto/crypto_server_test.cc
+++ b/net/quic/core/crypto/crypto_server_test.cc
@@ -62,7 +62,7 @@ struct TestParams {
QuicVersionVector supported_versions)
: enable_stateless_rejects(enable_stateless_rejects),
use_stateless_rejects(use_stateless_rejects),
- supported_versions(supported_versions) {}
+ supported_versions(std::move(supported_versions)) {}
friend ostream& operator<<(ostream& os, const TestParams& p) {
os << " enable_stateless_rejects: " << p.enable_stateless_rejects
« no previous file with comments | « net/quic/core/congestion_control/send_algorithm_simulator.cc ('k') | net/quic/core/quic_client_promised_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698