From 50894c6af84f5feedf4f6a1fcada75584e7dd4ac Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 20 Feb 2017 11:57:50 +0100 Subject: Fix compiler warning. --- test/libsolidity/InlineAssembly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/libsolidity') diff --git a/test/libsolidity/InlineAssembly.cpp b/test/libsolidity/InlineAssembly.cpp index 10a61777..9035599b 100644 --- a/test/libsolidity/InlineAssembly.cpp +++ b/test/libsolidity/InlineAssembly.cpp @@ -56,7 +56,7 @@ boost::optional parseAndReturnFirstError(string const& _source, bool _ass if (success && _assemble) stack.assemble(); } - catch (FatalError const& e) + catch (FatalError const&) { BOOST_FAIL("Fatal error leaked."); success = false; -- cgit