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

Unified Diff: net/quic/platform/api/quic_str_cat.h

Issue 2850573002: Landing Recent QUIC changes until 3:35 PM, Apr 26, 2017 UTC-4 (Closed)
Patch Set: Remove Disconnect from ~QuicTestClient 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/api/quic_ptr_util.h ('k') | net/quic/platform/impl/quic_mutex_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/platform/api/quic_str_cat.h
diff --git a/net/quic/platform/api/quic_str_cat.h b/net/quic/platform/api/quic_str_cat.h
index ff60dac26549ececf34ba8bc445bbf92df5e0433..9d6a970b26bf0ce0df27187dc3d78d3a988b0506 100644
--- a/net/quic/platform/api/quic_str_cat.h
+++ b/net/quic/platform/api/quic_str_cat.h
@@ -5,18 +5,21 @@
#ifndef NET_QUIC_PLATFORM_API_QUIC_STR_CAT_H_
#define NET_QUIC_PLATFORM_API_QUIC_STR_CAT_H_
+#include <string>
+#include <utility>
+
#include "net/quic/platform/impl/quic_str_cat_impl.h"
namespace net {
template <typename... Args>
inline std::string QuicStrCat(const Args&... args) {
- return std::move(QuicStrCatImpl(std::forward<const Args&>(args)...));
+ return QuicStrCatImpl(std::forward<const Args&>(args)...);
}
template <typename... Args>
inline std::string QuicStringPrintf(const Args&... args) {
- return std::move(QuicStringPrintfImpl(std::forward<const Args&>(args)...));
+ return QuicStringPrintfImpl(std::forward<const Args&>(args)...);
}
} // namespace net
« no previous file with comments | « net/quic/platform/api/quic_ptr_util.h ('k') | net/quic/platform/impl/quic_mutex_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698