a better command stream debugger

This commit is contained in:
tildearrow 2024-03-08 17:53:37 -05:00
parent d3f0f1d1d0
commit 2290f3d873
14 changed files with 265 additions and 6 deletions

View file

@ -227,3 +227,9 @@ void SafeWriter::finish() {
buf=NULL;
operative=false;
}
void SafeWriter::disown() {
if (!operative) return;
buf=NULL;
operative=false;
}