From 75cff007b4896eed49b758be0959668673ae1bf3 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Wed, 8 May 2024 10:07:57 +0300 Subject: [w10] Fixed mistakes in certain exercises --- week10/Exercise06/GradeWithName.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'week10/Exercise06') diff --git a/week10/Exercise06/GradeWithName.cpp b/week10/Exercise06/GradeWithName.cpp index 4a1b0b2..fb31a5f 100644 --- a/week10/Exercise06/GradeWithName.cpp +++ b/week10/Exercise06/GradeWithName.cpp @@ -21,7 +21,7 @@ GradeWithName::~GradeWithName() { free(); } -GradeWithName::GradeWithName(const GradeWithName& other) { +GradeWithName::GradeWithName(const GradeWithName& other) : Grade(other) { copyFrom(other); } -- cgit v1.2.3