| 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
|
|
|