diff options
author | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:52 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:52 -0700 |
commit | 8d2e51c7f52670055ffe97e221302561b87015a2 (patch) | |
tree | 792d211d603bd9155dee00861d1ce92d3ba2f09d /src/python/swig/event.i | |
parent | 709d859530325f28b904001f5a55dbdec2bad199 (diff) | |
download | gem5-8d2e51c7f52670055ffe97e221302561b87015a2.tar.xz |
includes: sort includes again
Diffstat (limited to 'src/python/swig/event.i')
-rw-r--r-- | src/python/swig/event.i | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/python/swig/event.i b/src/python/swig/event.i index c09f12016..99fde2d5b 100644 --- a/src/python/swig/event.i +++ b/src/python/swig/event.i @@ -31,8 +31,8 @@ %module event %{ -#include "python/swig/pyevent.hh" #include "base/types.hh" +#include "python/swig/pyevent.hh" #include "sim/eventq.hh" #include "sim/sim_events.hh" #include "sim/sim_exit.hh" @@ -75,9 +75,10 @@ %include "stdint.i" %include "std_string.i" + %include "base/types.hh" -%include "sim/eventq.hh" %include "python/swig/pyevent.hh" +%include "sim/eventq.hh" struct CountedDrainEvent : public Event { |