]> www.ginac.de Git - ginac.git/blobdiff - ginac/printtree.cpp
- ASSERT macro renamed to GINAC_ASSERT
[ginac.git] / ginac / printtree.cpp
index a7b09723aedbb8df704accc513ebd8a0648f7919..99cf56e078395191e5fbd2d524be2f6c1c568a6f 100644 (file)
@@ -45,7 +45,7 @@ namespace GiNaC {
 void ex::printtree(ostream & os, unsigned indent) const
 {
     debugmsg("ex printtree",LOGLEVEL_PRINT);
-    ASSERT(bp!=0);
+    GINAC_ASSERT(bp!=0);
     // os << "refcount=" << bp->refcount << " ";
     bp->printtree(os,indent);
 }
@@ -53,7 +53,7 @@ void ex::printtree(ostream & os, unsigned indent) const
 void ex::dbgprinttree(void) const
 {
     debugmsg("ex dbgprinttree",LOGLEVEL_PRINT);
-    ASSERT(bp!=0);
+    GINAC_ASSERT(bp!=0);
     bp->dbgprinttree();
 }