From 63c62a2aaedb1f30ff19336a6134619c3cb08ad0 Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Mon, 7 Jul 2014 20:54:38 +0200 Subject: [PATCH] Union::dump indentification fixed --- src/factory/FieldCreateFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/factory/FieldCreateFactory.cpp b/src/factory/FieldCreateFactory.cpp index 8b09700..21ca6a0 100644 --- a/src/factory/FieldCreateFactory.cpp +++ b/src/factory/FieldCreateFactory.cpp @@ -552,7 +552,7 @@ size_t Union::getFieldIndex(string const &fieldName) const { std::ostream& Union::dump(std::ostream& o) const { - o << getID() << std::endl; + o << format::indent() << getID() << std::endl; { format::indent_scope s(o); dumpFields(o);