From ed19516aa77b632197f47d0ddcd9632678baab98 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Mon, 25 Feb 2013 10:28:34 -0500 Subject: Fix unused local variable warnings --- libtests/pcre.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtests') diff --git a/libtests/pcre.cc b/libtests/pcre.cc index 6ebec01e..8b09665a 100644 --- a/libtests/pcre.cc +++ b/libtests/pcre.cc @@ -11,7 +11,7 @@ int main(int argc, char* argv[]) PCRE("^([\\p{L}]+)", PCRE_UTF8); std::cout << "1" << std::endl; } - catch (std::exception& e) + catch (std::exception&) { std::cout << "0" << std::endl; } -- cgit v1.2.3-54-g00ecf