diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-12-06 01:14:06 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2016-12-06 01:14:06 +0000 |
commit | fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca (patch) | |
tree | 5c117b4ca5ea2ab09924a9b103be2db18a18de4d /libcxx/test/std/utilities/tuple | |
parent | e9c728899f2b0f59b17c11ac146f16483a521c59 (diff) | |
download | bcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.tar.gz bcm5719-llvm-fe4ca8c5398524b3fc1aa1225bf2ddd57ae4f2ca.zip |
[libcxx] [test] D27266: Remove spurious semicolons.
llvm-svn: 288750
Diffstat (limited to 'libcxx/test/std/utilities/tuple')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp index 58df2df7679..9c2d992b8e4 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp @@ -19,7 +19,7 @@ #include <tuple> -template <class T> void cref(T const&) {}; +template <class T> void cref(T const&) {} template <class T> void cref(T const&&) = delete; std::tuple<int> const tup4() { return std::make_tuple(4); } |