[#73220] add final keyword to Activity* classes

This commit is contained in:
Mateusz Gancarz 2025-02-28 09:22:53 +01:00
parent ca06d3ddc9
commit 28db59249c
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ class VerilatedSaifFile;
//============================================================================= //=============================================================================
// ActivityBit // ActivityBit
class ActivityBit { class ActivityBit final {
public: public:
// METHODS // METHODS
VL_ATTR_ALWINLINE VL_ATTR_ALWINLINE
@ -59,7 +59,7 @@ private:
//============================================================================= //=============================================================================
// ActivityVar // ActivityVar
class ActivityVar { class ActivityVar final {
public: public:
// CONSTRUCTORS // CONSTRUCTORS
ActivityVar(uint32_t width, ActivityBit* bits) ActivityVar(uint32_t width, ActivityBit* bits)
@ -105,7 +105,7 @@ private:
//============================================================================= //=============================================================================
// ActivityScope // ActivityScope
class ActivityScope { class ActivityScope final {
public: public:
// CONSTRUCTORS // CONSTRUCTORS
ActivityScope(std::string name, int32_t parentScopeIndex = -1) ActivityScope(std::string name, int32_t parentScopeIndex = -1)