From 815e771d7d8509e87b738657aff28c544b2e6ded Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Thu, 9 Jul 2020 17:00:57 +0200 Subject: [PATCH] Ex8.1 feedback: emphasize uniqueness within set in comment --- ex8.1/Manager.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex8.1/Manager.hh b/ex8.1/Manager.hh index 6a099dc..c577561 100644 --- a/ex8.1/Manager.hh +++ b/ex8.1/Manager.hh @@ -36,7 +36,7 @@ public: private: string _name ; double _salary ; - set _subordinates ;// subordinates is an unordered collection so set is usefull enough + set _subordinates ;// subordinates is an unordered collection of unique people so set is usefull enough } ;