diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2008-06-24 15:48:45 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2008-06-24 15:48:45 -0400 |
commit | 57b5de6b9f9150ceda46c52b3621e60f667138d4 (patch) | |
tree | c315255c292903c9b2fbdb2dbe6c7cc1868beaea /src/python/swig | |
parent | b2036bfda88aa99304e48f26541e5d84ada34db9 (diff) | |
download | gem5-57b5de6b9f9150ceda46c52b3621e60f667138d4.tar.xz |
Checkpoinging/SWIG: Undo part of changeset 5464 since it broke checkpointing.
Diffstat (limited to 'src/python/swig')
-rw-r--r-- | src/python/swig/event.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/swig/event.i b/src/python/swig/event.i index ee1f3d00b..9a2093c99 100644 --- a/src/python/swig/event.i +++ b/src/python/swig/event.i @@ -44,8 +44,8 @@ void create(PyObject *object, Tick when); -class CountedDrainEvent -{ +class Event; +class CountedDrainEvent : public Event { public: void setCount(int _count); }; |