aboutsummaryrefslogtreecommitdiff
path: root/tests/target-triplet
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-13 00:29:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-15 15:58:03 +0300
commitc4a9db2f981a03aecf5e9a60e6d27a6dc6dac159 (patch)
treeb40c731b0e1ebdc8abdafddfadc919b64baef8f0 /tests/target-triplet
parent041b2137f7351abc8d648ed6a0399feaf331af08 (diff)
Fix VC15 warnings (/W3)
Diffstat (limited to 'tests/target-triplet')
-rw-r--r--tests/target-triplet/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/target-triplet/driver.cxx b/tests/target-triplet/driver.cxx
index 8691bac..b446a6f 100644
--- a/tests/target-triplet/driver.cxx
+++ b/tests/target-triplet/driver.cxx
@@ -152,7 +152,7 @@ fail (const char* s)
cerr << "nofail: " << s << endl;
return false;
}
- catch (invalid_argument& e)
+ catch (const invalid_argument&)
{
//cerr << e << endl;
}