]> www.ginac.de Git - ginac.git/blobdiff - ginac/power.h
Wipe out remnants of custom RTTI.
[ginac.git] / ginac / power.h
index a13f7fcfd211ba3344639b9e280e2d1084bb1b64..f8d29c0f24af75c51c91b22d09ddd071b2add4e0 100644 (file)
@@ -44,8 +44,8 @@ class power : public basic
        
        // other constructors
 public:
-       power(const ex & lh, const ex & rh) : inherited(&power::tinfo_static), basis(lh), exponent(rh) {}
-       template<typename T> power(const ex & lh, const T & rh) : inherited(&power::tinfo_static), basis(lh), exponent(rh) {}
+       power(const ex & lh, const ex & rh) :  basis(lh), exponent(rh) {}
+       template<typename T> power(const ex & lh, const T & rh) :  basis(lh), exponent(rh) {}
        
        // functions overriding virtual functions from base classes
 public: