From b7132af21492b4b3af1acf801b293a875e93d7fe Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 7 Apr 2022 18:19:19 +0200 Subject: [PATCH] patterns: Added missing override --- .../hex/pattern_language/patterns/pattern_array_static.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/include/hex/pattern_language/patterns/pattern_array_static.hpp b/lib/libimhex/include/hex/pattern_language/patterns/pattern_array_static.hpp index 51cafd664..1b7f84584 100644 --- a/lib/libimhex/include/hex/pattern_language/patterns/pattern_array_static.hpp +++ b/lib/libimhex/include/hex/pattern_language/patterns/pattern_array_static.hpp @@ -53,7 +53,7 @@ namespace hex::pl { 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(); }