diff options
author | Eric Fiselier <eric@efcs.ca> | 2015-12-18 01:04:36 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2015-12-18 01:04:36 +0000 |
commit | 51b9de4c7cd305927727455be24a496a867b0b23 (patch) | |
tree | 148af4f16eada91a825478a3eec5dfeeb36c0d0e /libcxx/test/std/utilities | |
parent | 0253543c92f63e67d212de07a61561b46e7b8c97 (diff) | |
download | bcm5719-llvm-51b9de4c7cd305927727455be24a496a867b0b23.tar.gz bcm5719-llvm-51b9de4c7cd305927727455be24a496a867b0b23.zip |
Fix type in tuple test. Sorry for the noise
llvm-svn: 255944
Diffstat (limited to 'libcxx/test/std/utilities')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp index 7bbd0016678..b661a78de8d 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp @@ -67,7 +67,7 @@ int main() { int x = 42; - int tuple y = 43; + int y = 43; std::tuple<int&, int const&> const t(x, y); static_assert(std::is_same<int&, decltype(std::get<int&>(std::move(t)))>::value, ""); static_assert(noexcept(std::get<int&>(std::move(t))), ""); @@ -77,7 +77,7 @@ int main() { int x = 42; - int tuple y = 43; + int y = 43; std::tuple<int&&, int const&&> const t(std::move(x), std::move(y)); static_assert(std::is_same<int&&, decltype(std::get<int&&>(std::move(t)))>::value, ""); static_assert(noexcept(std::get<int&&>(std::move(t))), ""); |