diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-06 03:25:12 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-07 14:39:05 +0300 |
commit | 47bfb3d1f9b409f82ebc7d15c62b0755cabde05f (patch) | |
tree | cd40db97c543d7595638492c2369285df5126486 /tests/package-version | |
parent | c24eeeb246c5a2b513ed08b155b2bce742324d06 (diff) |
Make use of operator<<(ostream, exception)
Diffstat (limited to 'tests/package-version')
-rw-r--r-- | tests/package-version/driver.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/package-version/driver.cxx b/tests/package-version/driver.cxx index 3e80b2e..9753f76 100644 --- a/tests/package-version/driver.cxx +++ b/tests/package-version/driver.cxx @@ -9,6 +9,7 @@ #include <exception> #include <stdexcept> // invalid_argument +#include <butl/utility> // operator<<(ostream, exception) #include <butl/optional> #include <bpkg/manifest> @@ -332,7 +333,7 @@ main (int argc, char* argv[]) } catch (const exception& e) { - cerr << e.what () << endl; + cerr << e << endl; return 1; } } |