From 31e84d54bfb2d1d74966d7f08bb246710ab068c1 Mon Sep 17 00:00:00 2001 From: moonleay Date: Sun, 9 Feb 2025 21:50:31 +0100 Subject: [PATCH] fix: fixed tasks again --- Task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Task.cpp b/Task.cpp index ce084ff..47e3734 100644 --- a/Task.cpp +++ b/Task.cpp @@ -54,7 +54,7 @@ namespace models ostream& operator<<(ostream& os, const Task& t) { - os << t.get_id() << " %" << t.get_name() << "% %" << t.get_description(); + os << t.get_id() << " %" << t.get_name() << "% %" << t.get_description() << "%"; // Fügt Childen Task mit passenden Lehrzeichen hinzu if (!t.children.empty()) os << " ";