aboutsummaryrefslogtreecommitdiff
path: root/bpkg/utility.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-01-06 03:23:55 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-01-09 21:35:36 +0300
commit64f84951d0e5c1d3352ba7b9f6c894eac72424c8 (patch)
tree1a8b69ae4d45ed08b6230dd1d4baf397d30e75b3 /bpkg/utility.cxx
parent9a90993e5605627121d7f51b4faf570d6d3bea83 (diff)
Make use of operator<<(ostream, exception)
Diffstat (limited to 'bpkg/utility.cxx')
-rw-r--r--bpkg/utility.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/bpkg/utility.cxx b/bpkg/utility.cxx
index 15c4728..234304e 100644
--- a/bpkg/utility.cxx
+++ b/bpkg/utility.cxx
@@ -68,7 +68,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to stat path " << f << ": " << e.what () << endf;
+ fail << "unable to stat path " << f << ": " << e << endf;
}
}
@@ -81,7 +81,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to stat path " << d << ": " << e.what () << endf;
+ fail << "unable to stat path " << d << ": " << e << endf;
}
}
@@ -94,7 +94,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to scan directory " << d << ": " << e.what () << endf;
+ fail << "unable to scan directory " << d << ": " << e << endf;
}
}
@@ -110,7 +110,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to create directory " << d << ": " << e.what ();
+ fail << "unable to create directory " << d << ": " << e;
}
}
@@ -126,7 +126,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to create directory " << d << ": " << e.what ();
+ fail << "unable to create directory " << d << ": " << e;
}
}
@@ -143,7 +143,7 @@ namespace bpkg
}
catch (const system_error& e)
{
- fail << "unable to remove file " << f << ": " << e.what ();
+ fail << "unable to remove file " << f << ": " << e;
}
}
@@ -160,7 +160,7 @@ namespace bpkg
catch (const system_error& e)
{
fail << "unable to remove " << (dir ? "" : "contents of ")
- << "directory " << d << ": " << e.what ();
+ << "directory " << d << ": " << e;
}
}
@@ -183,7 +183,7 @@ namespace bpkg
}
catch (const process_error& e)
{
- error << "unable to execute " << args[0] << ": " << e.what ();
+ error << "unable to execute " << args[0] << ": " << e;
if (e.child ())
exit (1);