From a8a5e80d6c698f6f0e07ec58067466230b4bf447 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 10 Apr 2017 17:47:18 +0300 Subject: Adapt to process_error change --- build2/cc/link.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build2/cc/link.cxx') diff --git a/build2/cc/link.cxx b/build2/cc/link.cxx index 69e8561..bd2face 100644 --- a/build2/cc/link.cxx +++ b/build2/cc/link.cxx @@ -1074,7 +1074,7 @@ namespace build2 { error << "unable to execute " << args[0] << ": " << e; - if (e.child ()) + if (e.child) exit (1); throw failed (); @@ -1597,7 +1597,7 @@ namespace build2 // it is unwise to try to do any kind of cleanup (like unwinding // the stack and running destructors). // - if (e.child ()) + if (e.child) exit (1); throw failed (); @@ -1631,7 +1631,7 @@ namespace build2 { error << "unable to execute " << args[0] << ": " << e; - if (e.child ()) + if (e.child) exit (1); throw failed (); -- cgit v1.1