]> www.ginac.de Git - ginac.git/blobdiff - ginac/printraw.cpp
- RPM_OPT_FLAGS are used for compiling
[ginac.git] / ginac / printraw.cpp
index d1aac63e1e5c86ea1be6f95248ae10612b774260..31f5606503ded57a706cbb23bb2be2bda5f30b98 100644 (file)
 #include "relational.h"
 #include "series.h"
 #include "symbol.h"
+#include "debugmsg.h"
+
+namespace GiNaC {
 
 void ex::printraw(ostream & os) const
 {
     debugmsg("ex printraw",LOGLEVEL_PRINT);
-    ASSERT(bp!=0);
+    GINAC_ASSERT(bp!=0);
     os << "ex(";
     bp->printraw(os);
     os << ")";
@@ -221,3 +224,5 @@ void matrix::printraw(ostream & os) const
     }
     os << m[row*col-1] << "))";
 }
+
+} // namespace GiNaC