You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2018/07/27 03:17:22 UTC

[trafficserver] 01/02: fix unit tests

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 2e68c1b21d28e0608321ed8ba6bbfdd1f8f0c191
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Fri Jul 27 12:00:17 2018 +0900

    fix unit tests
---
 iocore/net/quic/Mock.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/iocore/net/quic/Mock.h b/iocore/net/quic/Mock.h
index b2e2624..964ee32 100644
--- a/iocore/net/quic/Mock.h
+++ b/iocore/net/quic/Mock.h
@@ -175,6 +175,7 @@ public:
   std::string_view
   cids() const override
   {
+    using namespace std::literals;
     return std::string_view("00000000-00000000"sv);
   }
 
@@ -316,6 +317,7 @@ class MockQUICConnectionInfoProvider : public QUICConnectionInfoProvider
   std::string_view
   cids() const override
   {
+    using namespace std::literals;
     return std::string_view("00000000-00000000"sv);
   }