diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-02-18 09:31:25 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-02-18 09:31:25 -0800 |
commit | 4e7f8c088522dbf512ae02780f53cdccadb2474a (patch) | |
tree | 8e95bb8b96c76d253a52be5b9e8d8c5a03f6096b /src/sim/builder.cc | |
parent | ee93b4831438be8ab4b21905c3eaaffa0aed4390 (diff) | |
download | gem5-4e7f8c088522dbf512ae02780f53cdccadb2474a.tar.xz |
Get rid of the stand alone ParamContext since all of the
relevant stuff has now been moved to python.
--HG--
extra : convert_revision : 608e5ffd0e2b33949a2b183117216f136cfa4484
Diffstat (limited to 'src/sim/builder.cc')
-rw-r--r-- | src/sim/builder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/builder.cc b/src/sim/builder.cc index 9074cc899..8ef54ce52 100644 --- a/src/sim/builder.cc +++ b/src/sim/builder.cc @@ -40,7 +40,7 @@ using namespace std; SimObjectBuilder::SimObjectBuilder(const std::string &_iniSection) - : ParamContext(_iniSection, NoAutoInit) + : ParamContext(_iniSection) { } |