diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-11-06 16:53:02 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-11-06 16:53:02 +0100 |
commit | 39a2e166dd316cf3bf248cb109dde3a95d753541 (patch) | |
tree | 3755a947f895fbcbc9499e795af84d8fe0a68846 /src/libutil/xml-writer.cc | |
parent | 35732a95bcdc0a4b4492845205e6283fcc88fd0d (diff) |
Cleanup
Diffstat (limited to 'src/libutil/xml-writer.cc')
-rw-r--r-- | src/libutil/xml-writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/xml-writer.cc b/src/libutil/xml-writer.cc index e5cc2e9fc..68857e34d 100644 --- a/src/libutil/xml-writer.cc +++ b/src/libutil/xml-writer.cc @@ -1,10 +1,10 @@ -#include <assert.h> +#include <cassert> #include "xml-writer.hh" namespace nix { - + XMLWriter::XMLWriter(bool indent, std::ostream & output) : output(output), indent(indent) |