SimObject: Add in missing includes of <string> and fix minor style problem.

This commit is contained in:
Gabe Black 2008-06-21 14:23:58 -04:00
parent 1434b86943
commit 18c83be507
2 changed files with 6 additions and 3 deletions

View file

@ -36,10 +36,11 @@
#ifndef __SIM_OBJECT_HH__
#define __SIM_OBJECT_HH__
#include <map>
#include <list>
#include <vector>
#include <iostream>
#include <list>
#include <map>
#include <string>
#include <vector>
#include "params/SimObject.hh"
#include "sim/serialize.hh"

View file

@ -36,6 +36,8 @@
struct PyObject;
#endif
#include <string>
struct SimObjectParams
{
virtual ~SimObjectParams() {}