Minor style fix in day2

master
Nick Krichevsky 2020-12-02 01:50:31 -05:00
parent 890c4f2048
commit b83b0a098b
1 changed files with 2 additions and 2 deletions

View File

@ -82,11 +82,11 @@ class Entry {
return Entry(policy, password); return Entry(policy, password);
} }
Policy const &getPolicy() const { const Policy &getPolicy() const {
return this->policy; return this->policy;
} }
std::string const &getPassword() const { const std::string &getPassword() const {
return this->password; return this->password;
} }