]> www.ginac.de Git - ginac.git/blobdiff - ginac/ncmul.cpp
- Cleanups: My evil plot of making ex::bp private may finally be carried
[ginac.git] / ginac / ncmul.cpp
index eecafef4f3fb5af7661f9a667ce576778ffff0aa..473a1c9ef43513711c8d876bdf90f65f5bb6b78e 100644 (file)
@@ -118,11 +118,11 @@ void ncmul::print(const print_context & c, unsigned level) const
 {
        debugmsg("ncmul print", LOGLEVEL_PRINT);
 
-       if (is_of_type(c, print_tree)) {
+       if (is_a<print_tree>(c)) {
 
                inherited::print(c, level);
 
-       } else if (is_of_type(c, print_csrc)) {
+       } else if (is_a<print_csrc>(c)) {
 
                c.s << "ncmul(";
                exvector::const_iterator it = seq.begin(), itend = seq.end()-1;