Kaydet (Commit) 380b858d authored tarafından Julien Nabet's avatar Julien Nabet

Fix shadowed declaration of "e"

Change-Id: I42740c0b01d33c90e6ad9f86a658ef27c2673fd3
üst 5f895a9c
...@@ -753,9 +753,9 @@ SAL_IMPLEMENT_MAIN() { ...@@ -753,9 +753,9 @@ SAL_IMPLEMENT_MAIN() {
std::size_t size; std::size_t size;
try { try {
off = writeMap(f, prov->createRootCursor(), &size); off = writeMap(f, prov->createRootCursor(), &size);
} catch (unoidl::FileFormatException & e) { } catch (unoidl::FileFormatException & e1) {
std::cerr std::cerr
<< "Bad input <" << e.getUri() << ">: " << e.getDetail() << "Bad input <" << e1.getUri() << ">: " << e1.getDetail()
<< std::endl; << std::endl;
std::exit(EXIT_FAILURE); std::exit(EXIT_FAILURE);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment