diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-06-22 01:13:44 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-06-22 01:13:44 +0000 |
commit | 8d0d842e7b11d29498b150b136426600d770e533 (patch) | |
tree | 9d0cc830e92fb17200eba01348a898500a21a1a6 /libcxx/test/std/utilities | |
parent | 7a580d0a72e54b8ffe5c257323029afdbc7fab9b (diff) | |
download | bcm5719-llvm-8d0d842e7b11d29498b150b136426600d770e533.tar.gz bcm5719-llvm-8d0d842e7b11d29498b150b136426600d770e533.zip |
Avoid huge main() functions and huge arrays. Patch from STL@microsoft.com
llvm-svn: 273354
Diffstat (limited to 'libcxx/test/std/utilities')
-rw-r--r-- | libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp index cfe5906fbc4..f156e7fa8bc 100644 --- a/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp @@ -15,7 +15,7 @@ // the following definitions in this order: // 1) is_swappable, is_nothrow_swappable // 2) iter_swap, swap_ranges -// 3) swap(T (&)[N], T(&)[N] +// 3) swap(T (&)[N], T (&)[N]) // This test checks that (1) and (2) see forward declarations // for (3). #include <type_traits> @@ -27,7 +27,7 @@ int main() { // Use a builtin type so we don't get ADL lookup. - typedef double T[42][50]; + typedef double T[17][29]; { LIBCPP_STATIC_ASSERT(std::__is_swappable<T>::value, ""); #if TEST_STD_VER > 14 @@ -38,6 +38,6 @@ int main() T t1 = {}; T t2 = {}; std::iter_swap(t1, t2); - std::swap_ranges(t1, t1 + 42, t2); + std::swap_ranges(t1, t1 + 17, t2); } } |