aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-22 17:32:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-22 17:32:24 +0200
commite65b3fd3f273a4377f07872c8bb944858b8d3153 (patch)
tree2b8dfe6c80ec0171e5883ea54e81ee67714b6fb3
parentc2589526054b394052fe59e29e58fcdd284d81f3 (diff)
Remove unused variables
-rw-r--r--bdep/config.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bdep/config.cxx b/bdep/config.cxx
index 21dfa38..d8b652e 100644
--- a/bdep/config.cxx
+++ b/bdep/config.cxx
@@ -325,7 +325,7 @@ namespace bdep
{
path = dir_path (move (arg));
}
- catch (const invalid_path& e)
+ catch (const invalid_path&)
{
fail << "invalid configuration directory '" << arg << "'";
}
@@ -373,7 +373,7 @@ namespace bdep
{
path = dir_path (move (arg));
}
- catch (const invalid_path& e)
+ catch (const invalid_path&)
{
fail << "invalid configuration directory '" << arg << "'";
}
@@ -470,7 +470,7 @@ namespace bdep
path.complete ();
path.normalize ();
}
- catch (const invalid_path& e)
+ catch (const invalid_path&)
{
fail << "invalid configuration directory '" << a << "'";
}