From 94ee39ca995425bd75c6eaf82f18bb96d15936ff Mon Sep 17 00:00:00 2001 From: Dominik Drexler Date: Tue, 26 Nov 2024 22:49:24 +0100 Subject: [PATCH] fix indent --- src/pddl/formatter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pddl/formatter.cpp b/src/pddl/formatter.cpp index b4b0552d..fff21975 100644 --- a/src/pddl/formatter.cpp +++ b/src/pddl/formatter.cpp @@ -81,7 +81,7 @@ void PDDLFormatter::write(const AxiomImpl& element, std::ostream& out) } out << "\n"; - m_indent -= m_add_indent; + m_indent += m_add_indent; out << std::string(m_indent, ' '); write(*element.get_condition(), out);