aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-11-08 11:01:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-11-08 11:01:21 +0200
commitdc8b44e8d1354aa43f7aade825ad5a5f56bae1e8 (patch)
tree4077828b7a791d36b4ecde169386505235164ebe
parentb88ee1c13fa99ec2ed5126b18418bace1f95ed36 (diff)
Adjust to diagnostics epilogue interface change
-rw-r--r--bbot/diagnostics.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/diagnostics.hxx b/bbot/diagnostics.hxx
index c5a81d7..b98e7c5 100644
--- a/bbot/diagnostics.hxx
+++ b/bbot/diagnostics.hxx
@@ -134,9 +134,9 @@ namespace bbot
indent,
nullptr,
data,
- [](const diag_record& r)
+ [](const diag_record& r, butl::diag_writer* w)
{
- r.flush ();
+ r.flush (w);
throw failed ();
}) {}