diff --git a/era/xml_format.cc b/era/xml_format.cc index 59aa4a7..8e49ce0 100644 --- a/era/xml_format.cc +++ b/era/xml_format.cc @@ -47,7 +47,7 @@ namespace { void writeset_bit(uint32_t bit, bool value) { out_.indent(); // FIXME: collect all the bits, then uuencode - out_ << "" << endl; + out_ << "" << endl; } void end_writeset() { @@ -74,6 +74,10 @@ namespace { out_ << "" << endl; } + char const *truth_value(bool v) const { + return v ? "true" : "false"; + } + private: indented_stream out_; };