]> www.ginac.de Git - ginac.git/blobdiff - ginac/clifford.cpp
- ASSERT macro renamed to GINAC_ASSERT
[ginac.git] / ginac / clifford.cpp
index d16f1fe52cf7a49bf312252986fed4f1be082472..16f9a4d4c9822e30137f6a074de614c94dabf8e2 100644 (file)
@@ -27,6 +27,9 @@
 #include "ex.h"
 #include "ncmul.h"
 #include "utils.h"
+#include "debugmsg.h"
+
+namespace GiNaC {
 
 //////////
 // default constructor, destructor, copy constructor assignment operator and helpers
@@ -148,7 +151,7 @@ bool clifford::info(unsigned inf) const
 
 int clifford::compare_same_type(basic const & other) const
 {
-    ASSERT(other.tinfo() == TINFO_clifford);
+    GINAC_ASSERT(other.tinfo() == TINFO_clifford);
     const clifford *o = static_cast<const clifford *>(&other);
     if (serial==o->serial) {
         return indexed::compare_same_type(other);
@@ -208,3 +211,4 @@ unsigned clifford::next_serial=0;
 const clifford some_clifford;
 type_info const & typeid_clifford=typeid(some_clifford);
 
+} // namespace GiNaC