summaryrefslogtreecommitdiffstats
path: root/test/std/utilities/tuple
diff options
context:
space:
mode:
authorStephan T. Lavavej <stl@exchange.microsoft.com>2016-12-06 01:14:06 +0000
committerStephan T. Lavavej <stl@exchange.microsoft.com>2016-12-06 01:14:06 +0000
commite2dbcaf969250926a15d527bfbee9d69233a9700 (patch)
treed9fe561fcb8164568554ddd11937fddc341cd70a /test/std/utilities/tuple
parent43d9250a01c44bd2bb85f92024e89c27849d143a (diff)
downloadexternal_libcxx-e2dbcaf969250926a15d527bfbee9d69233a9700.tar.gz
external_libcxx-e2dbcaf969250926a15d527bfbee9d69233a9700.tar.bz2
external_libcxx-e2dbcaf969250926a15d527bfbee9d69233a9700.zip
[libcxx] [test] D27266: Remove spurious semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@288750 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/std/utilities/tuple')
-rw-r--r--test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp b/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp
index 58df2df76..9c2d992b8 100644
--- a/test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp
+++ b/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); }