summaryrefslogtreecommitdiff
path: root/src/sim/sim_object.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-06-21 14:23:58 -0400
committerGabe Black <gblack@eecs.umich.edu>2008-06-21 14:23:58 -0400
commit18c83be50702e27ef092a3c7630514b364f60aa0 (patch)
treec5726b05e1dd47063be80ec6b002c2401cb75e7c /src/sim/sim_object.hh
parent1434b8694319047ba7f35cc6c1a9c965ccba3f22 (diff)
downloadgem5-18c83be50702e27ef092a3c7630514b364f60aa0.tar.xz
SimObject: Add in missing includes of <string> and fix minor style problem.
Diffstat (limited to 'src/sim/sim_object.hh')
-rw-r--r--src/sim/sim_object.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sim/sim_object.hh b/src/sim/sim_object.hh
index ec565ce82..00bb3fee6 100644
--- a/src/sim/sim_object.hh
+++ b/src/sim/sim_object.hh
@@ -36,10 +36,11 @@
#ifndef __SIM_OBJECT_HH__
#define __SIM_OBJECT_HH__
-#include <map>
+#include <iostream>
#include <list>
+#include <map>
+#include <string>
#include <vector>
-#include <iostream>
#include "params/SimObject.hh"
#include "sim/serialize.hh"