From b5e028d239ee343114a03b102e75e4a574ae967b Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Fri, 5 Jun 2015 13:31:54 +0200 Subject: [PATCH] Commit missing weOwnStream_ --- source/dyaml/dumper.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/dyaml/dumper.d b/source/dyaml/dumper.d index 5fe4c6b..b3e7d61 100644 --- a/source/dyaml/dumper.d +++ b/source/dyaml/dumper.d @@ -120,6 +120,8 @@ struct Dumper //Stream to write to. Stream stream_; + //True if this Dumper owns stream_ and needs to destroy it in the destructor. + bool weOwnStream_ = false; //Write scalars in canonical form? bool canonical_;