patterns: Added missing override

This commit is contained in:
WerWolv 2022-04-07 18:19:19 +02:00
parent 74a5c974e6
commit b7132af214
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace hex::pl {
return this->m_template->getTypeName() + "[" + std::to_string(this->m_entryCount) + "]"; return this->m_template->getTypeName() + "[" + std::to_string(this->m_entryCount) + "]";
} }
[[nodiscard]] std::string getTypeName() const { [[nodiscard]] std::string getTypeName() const override {
return this->m_template->getTypeName(); return this->m_template->getTypeName();
} }