refactor: add override specifier to type_name method in Core/Types.h

This commit is contained in:
AndreaRigoni
2026-04-03 10:14:20 +00:00
parent 7f6323403d
commit e09a614fa5

View File

@@ -182,7 +182,7 @@ typedef bool Bool_t; // Boolean (0=false, 1=true) (bool)
\
public: \
typedef type_info::BaseClass BaseClass; \
virtual const char *type_name() const { return type_info::name; } \
virtual const char *type_name() const override { return type_info::name; } \
/**/
/**