diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 10:58:17 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-11-08 10:58:17 +0200 |
commit | f5d86339adc16b8aaf7973fdab14de6a9828377a (patch) | |
tree | 09298b818bc148db5222fbf1165a51af1f03eb3a | |
parent | c64d7309b1a055d7c6f0e628b4c31d6c6fd4c193 (diff) |
Adjust to diagnostics epilogue interface change
-rw-r--r-- | bdep/diagnostics.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/diagnostics.hxx b/bdep/diagnostics.hxx index e560724..689e4eb 100644 --- a/bdep/diagnostics.hxx +++ b/bdep/diagnostics.hxx @@ -241,9 +241,9 @@ namespace bdep : basic_mark_base (type, nullptr, data, - [](const diag_record& r) + [](const diag_record& r, butl::diag_writer* w) { - r.flush (); + r.flush (w); throw failed (); }) {} }; |