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

Side by Side Diff: net/quic/platform/api/quic_str_cat.h

Issue 2591143003: Add QuicStrCat. (Closed)
Patch Set: correct quic_client_bin.cc Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_QUIC_PLATFORM_API_QUIC_STR_CAT_H_
6 #define NET_QUIC_PLATFORM_API_QUIC_STR_CAT_H_
7
8 #include "net/quic/platform/impl/quic_str_cat_impl.h"
9
10 namespace net {
11
12 template <typename... Args>
13 inline std::string QuicStrCat(const Args&... args) {
14 return std::move(QuicStrCatImpl(std::forward<const Args&>(args)...));
Ryan Hamilton 2016/12/22 18:17:30 no need to do this as part of this CL, but it'd be
15 }
16
17 } // namespace net
18
19 #endif // NET_QUIC_PLATFORM_API_QUIC_STR_CAT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698