SimObject: Add in missing includes of <string> and fix minor style problem.
This commit is contained in:
parent
1434b86943
commit
18c83be507
2 changed files with 6 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
struct PyObject;
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
||||
struct SimObjectParams
|
||||
{
|
||||
virtual ~SimObjectParams() {}
|
||||
|
|
Loading…
Reference in a new issue