diff options
Diffstat (limited to 'sim/eventq.hh')
-rw-r--r-- | sim/eventq.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/eventq.hh b/sim/eventq.hh index 475c4face..dc1b2d9af 100644 --- a/sim/eventq.hh +++ b/sim/eventq.hh @@ -53,7 +53,7 @@ class EventQueue; // forward declaration * event is specified by deriving a subclass and overriding the * process() member function. */ -class Event : public Serializeable, public FastAlloc +class Event : public Serializable, public FastAlloc { friend class EventQueue; @@ -204,7 +204,7 @@ DelayFunction(Tick when, T *object) /* * Queue of events sorted in time order */ -class EventQueue : public Serializeable +class EventQueue : public Serializable { protected: std::string objName; |