Ex8.1 feedback: emphasize uniqueness within set in comment
This commit is contained in:
parent
83318d7e73
commit
815e771d7d
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public:
|
|||
private:
|
||||
string _name ;
|
||||
double _salary ;
|
||||
set<Employee*> _subordinates ;// subordinates is an unordered collection so set is usefull enough
|
||||
set<Employee*> _subordinates ;// subordinates is an unordered collection of unique people so set is usefull enough
|
||||
|
||||
} ;
|
||||
|
||||
|
|
Reference in a new issue