From fb42f4c44adc1e2ac25c1305e77d53e735012b77 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 2 May 2016 19:15:48 +0000 Subject: Void cast runtime-unused variables. Patch from STL@microsoft.com llvm-svn: 268284 --- .../support.exception/except.nested/throw_with_nested.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/std/language.support/support.exception/except.nested') diff --git a/libcxx/test/std/language.support/support.exception/except.nested/throw_with_nested.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/throw_with_nested.pass.cpp index 98006bb1e3a..b507eccc369 100644 --- a/libcxx/test/std/language.support/support.exception/except.nested/throw_with_nested.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/throw_with_nested.pass.cpp @@ -112,7 +112,7 @@ int main() std::throw_with_nested(Final()); assert(false); } - catch (const Final &f) + catch (const Final &) { } } -- cgit v1.2.3