aboutsummaryrefslogtreecommitdiff
path: root/tests/manifest
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-01-06 03:25:12 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-01-07 14:39:05 +0300
commit47bfb3d1f9b409f82ebc7d15c62b0755cabde05f (patch)
treecd40db97c543d7595638492c2369285df5126486 /tests/manifest
parentc24eeeb246c5a2b513ed08b155b2bce742324d06 (diff)
Make use of operator<<(ostream, exception)
Diffstat (limited to 'tests/manifest')
-rw-r--r--tests/manifest/driver.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/manifest/driver.cxx b/tests/manifest/driver.cxx
index 9b6c31a..380bd04 100644
--- a/tests/manifest/driver.cxx
+++ b/tests/manifest/driver.cxx
@@ -5,6 +5,7 @@
#include <cassert>
#include <iostream>
+#include <butl/utility> // operator<<(ostream, exception)
#include <butl/fdstream>
#include <butl/manifest-parser>
#include <butl/manifest-serializer>
@@ -43,7 +44,7 @@ main (int argc, char* argv[])
}
catch (const exception& e)
{
- cerr << e.what () << endl;
+ cerr << e << endl;
return 1;
}
}