From 04b7f3da2b0c8214a552e5540f34c543ea6dc769 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 24 Oct 2016 20:11:17 +0000 Subject: [PATCH] Add missing include in string_view tests. Patch from Billy ONeil @ microsoft git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@285012 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/std/strings/string.view/string.view.ops/copy.pass.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/std/strings/string.view/string.view.ops/copy.pass.cpp b/test/std/strings/string.view/string.view.ops/copy.pass.cpp index 0a2ed8371..41601467b 100644 --- a/test/std/strings/string.view/string.view.ops/copy.pass.cpp +++ b/test/std/strings/string.view/string.view.ops/copy.pass.cpp @@ -19,6 +19,7 @@ #include +#include #include #include "test_macros.h"