1 // Copyright (c) 2020 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_IMPL_QUIC_TESTVALUE_IMPL_H_
6 #define NET_QUIC_PLATFORM_IMPL_QUIC_TESTVALUE_IMPL_H_
7 
8 #include "net/third_party/quiche/src/common/platform/api/quiche_string_piece.h"
9 
10 namespace quic {
11 
12 template <class T>
AdjustTestValueImpl(absl::string_view label,T * var)13 void AdjustTestValueImpl(absl::string_view label, T* var) {}
14 
15 }  // namespace quic
16 
17 #endif  // NET_QUIC_PLATFORM_IMPL_QUIC_TESTVALUE_IMPL_H_
18