aboutsummaryrefslogtreecommitdiffstats
path: root/libtests
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-02-25 16:28:34 +0100
committerJay Berkenbilt <ejb@ql.org>2013-03-04 22:45:16 +0100
commited19516aa77b632197f47d0ddcd9632678baab98 (patch)
treed452d07e4739099ffa0c64b0e1d90f804944ef0e /libtests
parent30027481f7f9e9191f7c8deea51850b7a76b1b1f (diff)
downloadqpdf-ed19516aa77b632197f47d0ddcd9632678baab98.tar.zst
Fix unused local variable warnings
Diffstat (limited to 'libtests')
-rw-r--r--libtests/pcre.cc2
1 files changed, 1 insertions, 1 deletions
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;
}