commit | 8d113d430f4aee2ad49ba680dd07b453e44e2442 | [log] [tgz] |
---|---|---|
author | Marshall Clow <mclow.lists@gmail.com> | Tue Jan 12 14:51:04 2016 +0000 |
committer | Marshall Clow <mclow.lists@gmail.com> | Tue Jan 12 14:51:04 2016 +0000 |
tree | 74e188990fb20b9030ce70958f64260a19e69b4b | |
parent | 00021429d4b89d2f1d8833ea8cc4688107ab5262 [diff] [blame] |
Add a bunch of missing includes in the test suite to make it more portable. Fixes bugs #26120 and #26121. Thanks to Jonathan Wakely for the reports and the patches. llvm-svn: 257474
diff --git a/libcxx/test/std/experimental/string.view/string.view.access/at.pass.cpp b/libcxx/test/std/experimental/string.view/string.view.access/at.pass.cpp index a3208c1..46804d4 100644 --- a/libcxx/test/std/experimental/string.view/string.view.access/at.pass.cpp +++ b/libcxx/test/std/experimental/string.view/string.view.access/at.pass.cpp
@@ -17,6 +17,7 @@ // constexpr const _CharT& at(size_type _pos) const; #include <experimental/string_view> +#include <stdexcept> #include <cassert> template <typename CharT>