From 52169ab43f78b7eb7e3192a5b408aad37a859c42 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 31 Jul 2016 18:44:33 +0100 Subject: [PATCH] Fix missing include. --- test/captures/captures_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/captures/captures_test.cpp b/test/captures/captures_test.cpp index 3ea7f415..63f58c9c 100644 --- a/test/captures/captures_test.cpp +++ b/test/captures/captures_test.cpp @@ -20,6 +20,7 @@ #include #include "../test_macros.hpp" #include +#include #ifdef BOOST_HAS_ICU #include @@ -38,7 +39,7 @@ int array_size(const char* (&p)[N]) std::wstring make_wstring(const char* p) { - return std::wstring(p, p + strlen(p)); + return std::wstring(p, p + std::strlen(p)); } #ifdef __sgi