diff options
author | Nathan Binkert <nate@binkert.org> | 2008-08-11 12:22:17 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-08-11 12:22:17 -0700 |
commit | 9cf8ad3a17894c482968b5055e72f5434740f1f2 (patch) | |
tree | c01643645476f4c6b4e382c788e2d6f72242b85a /src/sim/sim_object.hh | |
parent | ee62a0fec8e63f45f816c61ab9fb28aba7414185 (diff) | |
download | gem5-9cf8ad3a17894c482968b5055e72f5434740f1f2.tar.xz |
params: Get rid of the remnants of the old style parameter configuration stuff.
Diffstat (limited to 'src/sim/sim_object.hh')
-rw-r--r-- | src/sim/sim_object.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sim/sim_object.hh b/src/sim/sim_object.hh index 00bb3fee6..0141c16cc 100644 --- a/src/sim/sim_object.hh +++ b/src/sim/sim_object.hh @@ -87,10 +87,6 @@ class SimObject : public Serializable, protected StartupCallback SimObject(const Params *_params); virtual ~SimObject() {} - protected: - // static: support for old-style constructors (call manually) - static Params *makeParams(const std::string &name); - public: virtual const std::string name() const { return params()->name; } |