]> www.ginac.de Git - ginac.git/blobdiff - ginac/ncmul.cpp
- Changes to make it more ANSI-conformant. Stuff detected while trying
[ginac.git] / ginac / ncmul.cpp
index 7e8dce6596a728679ec397c99cbe7192fce531fd..d8e7584bc723e248702a2336255d88a7393ecc5c 100644 (file)
@@ -179,7 +179,6 @@ void ncmul::print(std::ostream & os, unsigned upper_precedence) const
 void ncmul::printraw(std::ostream & os) const
 {
        debugmsg("ncmul printraw",LOGLEVEL_PRINT);
-
        os << "%(";
        for (exvector::const_iterator it=seq.begin(); it!=seq.end(); ++it) {
                (*it).bp->printraw(os);
@@ -189,7 +188,7 @@ void ncmul::printraw(std::ostream & os) const
        os << ")";
 }
 
-void ncmul::printcsrc(std::ostream & os, unsigned upper_precedence) const
+void ncmul::printcsrc(std::ostream & os, unsigned type, unsigned upper_precedence) const
 {
        debugmsg("ncmul print csrc",LOGLEVEL_PRINT);
        exvector::const_iterator it;