]> www.ginac.de Git - ginac.git/blobdiff - ginac/mul.h
- Cleanups: My evil plot of making ex::bp private may finally be carried
[ginac.git] / ginac / mul.h
index d24d37edd8c273e23a65e81c2fc358b3865db993..830c213aef1b517fa051c07bb37e61b15a2c72e9 100644 (file)
@@ -45,7 +45,7 @@ public:
        mul(epvector * vp, const ex & oc);
        mul(const ex & lh, const ex & mh, const ex & rh);
        
-       // functions overriding virtual functions from bases classes
+       // functions overriding virtual functions from base classes
 public:
        void print(const print_context & c, unsigned level = 0) const;
        unsigned precedence(void) const {return 50;}
@@ -91,13 +91,6 @@ protected:
 
 // utility functions
 
-/** Return the mul object handled by an ex.  Deprecated: use ex_to<mul>().
- *  This is unsafe: you need to check the type first. */
-inline const mul &ex_to_mul(const ex &e)
-{
-       return static_cast<const mul &>(*e.bp);
-}
-
 /** Specialization of is_exactly_a<mul>(obj) for mul objects. */
 template<> inline bool is_exactly_a<mul>(const basic & obj)
 {