summaryrefslogtreecommitdiffstats
path: root/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2013-08-07 19:39:48 +0000
committerHoward Hinnant <hhinnant@apple.com>2013-08-07 19:39:48 +0000
commitd098713aaf902ea7d4729b73f83af461dac45a0d (patch)
tree41fdfd9bfdea111c80febb2d08c27fb31fd44085 /libcxx/test/utilities/tuple/tuple.tuple/tuple.creation
parentc5582b57c60e25ab2c2108f2c48e18c0b122bb6d (diff)
downloadbcm5719-llvm-d098713aaf902ea7d4729b73f83af461dac45a0d.tar.gz
bcm5719-llvm-d098713aaf902ea7d4729b73f83af461dac45a0d.zip
War on tabs
llvm-svn: 187906
Diffstat (limited to 'libcxx/test/utilities/tuple/tuple.tuple/tuple.creation')
-rw-r--r--libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp b/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp
index 4b6649a0507..5b33d1a23f8 100644
--- a/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp
+++ b/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp
@@ -40,7 +40,7 @@ int main()
}
#if _LIBCPP_STD_VER > 11
{
- constexpr auto t1 = std::make_tuple(0, 1, 3.14);
+ constexpr auto t1 = std::make_tuple(0, 1, 3.14);
constexpr int i1 = std::get<1>(t1);
constexpr double d1 = std::get<2>(t1);
static_assert (i1 == 1, "" );
OpenPOWER on IntegriCloud