diff options
-rw-r--r-- | bdep/config.cxx | 6 |
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 << "'"; } |