Skip to content

Commit 9695f75

Browse files
committed
fix: Non-overridden destructor
1 parent 06874c2 commit 9695f75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generators/include/pl/formatters/formatter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace pl::gen::fmt {
2828

2929
class FormatterPatternVisitor : public pl::PatternVisitor {
3030
public:
31-
virtual ~FormatterPatternVisitor() = default;
31+
~FormatterPatternVisitor() override = default;
3232

3333
void enableMetaInformation(bool enable) { this->m_metaInformation = enable; }
3434
[[nodiscard]] bool isMetaInformationEnabled() const { return this->m_metaInformation; }

0 commit comments

Comments
 (0)