From eee7a3da4dbc38ae0fd190fbfb95bf4e08cf3865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Fri, 20 May 2016 17:03:56 +0200 Subject: [PATCH] Minor formatting. --- src/plasp/sas/Description.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plasp/sas/Description.cpp b/src/plasp/sas/Description.cpp index 1fd01aa..e1765f8 100644 --- a/src/plasp/sas/Description.cpp +++ b/src/plasp/sas/Description.cpp @@ -64,7 +64,7 @@ void Description::print(std::ostream &ostream) const std::for_each(m_variables.cbegin(), m_variables.cend(), [&](const auto &variable) { - ostream << "\t" << variable.name << std::endl; + ostream << "\t" << variable.name << ":" << std::endl; ostream << "\t\tvalues: " << variable.values.size() << std::endl; std::for_each(variable.values.cbegin(), variable.values.cend(), @@ -115,7 +115,7 @@ void Description::print(std::ostream &ostream) const std::for_each(m_operators.cbegin(), m_operators.cend(), [&](const auto &operator_) { - ostream << "\t" << operator_.name << std::endl; + ostream << "\t" << operator_.name << ":" << std::endl; ostream << "\t\tpreconditions: " << operator_.preconditions.size() << std::endl; std::for_each(operator_.preconditions.cbegin(), operator_.preconditions.cend(),