summaryrefslogtreecommitdiff
path: root/src/python/swig/pyobject.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-02 23:30:25 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-02 23:30:25 -0700
commit121a894ce0d551e860392f9aa6bd381329a25b96 (patch)
tree3e8b7ded2869c14eb45403a15100d45d247f401b /src/python/swig/pyobject.hh
parentf4b89cd897e15b34f1565f55d7c6ce0c056f361a (diff)
parent0536d0cde931e89d33b10228950d455dd54d8a5f (diff)
downloadgem5-121a894ce0d551e860392f9aa6bd381329a25b96.tar.xz
Merge with head.
--HG-- extra : convert_revision : c8b066289916b3fb24bcae1e9c76e27ad4cf61b1
Diffstat (limited to 'src/python/swig/pyobject.hh')
-rw-r--r--src/python/swig/pyobject.hh20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/python/swig/pyobject.hh b/src/python/swig/pyobject.hh
index da609e07e..8e3a96994 100644
--- a/src/python/swig/pyobject.hh
+++ b/src/python/swig/pyobject.hh
@@ -47,26 +47,6 @@ void loadIniFile(PyObject *_resolveFunc);
int connectPorts(SimObject *o1, const std::string &name1, int i1,
SimObject *o2, const std::string &name2, int i2);
-inline BaseCPU *
-convertToBaseCPUPtr(SimObject *obj)
-{
- BaseCPU *ptr = dynamic_cast<BaseCPU *>(obj);
-
- if (ptr == NULL)
- warn("Casting to BaseCPU pointer failed");
- return ptr;
-}
-
-inline System *
-convertToSystemPtr(SimObject *obj)
-{
- System *ptr = dynamic_cast<System *>(obj);
-
- if (ptr == NULL)
- warn("Casting to System pointer failed");
- return ptr;
-}
-
inline void
initAll()
{