|
Boost-Commit : |
From: jurko.gospodnetic_at_[hidden]
Date: 2008-08-22 23:04:18
Author: jurko
Date: 2008-08-22 23:04:18 EDT (Fri, 22 Aug 2008)
New Revision: 48300
URL: http://svn.boost.org/trac/boost/changeset/48300
Log:
Removed two unused exception variables in the bcp/add_path.cpp module to remove compilation warnings when compiling the bcp tool.
Text files modified:
trunk/tools/bcp/add_path.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/bcp/add_path.cpp
==============================================================================
--- trunk/tools/bcp/add_path.cpp (original)
+++ trunk/tools/bcp/add_path.cpp 2008-08-22 23:04:18 EDT (Fri, 22 Aug 2008)
@@ -253,7 +253,7 @@
}
include_file = i->str();
}
- catch(const fs::filesystem_error& e)
+ catch(const fs::filesystem_error&)
{
std::cerr << "Can't parse filename " << *i << " included by file " << p.string() << std::endl;
++i;
@@ -292,7 +292,7 @@
try{
include_file = i->str();
}
- catch(const fs::filesystem_error& e)
+ catch(const fs::filesystem_error&)
{
std::cerr << "Can't parse filename " << *i << " included by file " << p.string() << std::endl;
++i;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk