From 7e187f1be98e41e79286283719fa85dbce413dbd Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Thu, 5 Feb 2015 07:26:14 +0000 Subject: [PATCH] Test commit: remove whitespace at EOL. llvm-svn: 228280 --- .../alg.modifying.operations/alg.swap/swap_ranges.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp index b2c875d0f4b3..64a5a6a5a064 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp @@ -80,7 +80,7 @@ void test2() assert ( dest[1][0] == 2 ); assert ( dest[1][1] == 3 ); } - + { int src[3][3] = {{0, 1, 2}, {3, 4, 5}, {6, 7, 8}}; decltype(src) dest = {{9, 8, 7}, {6, 5, 4}, {3, 2, 1}};