]> www.ginac.de Git - ginac.git/commitdiff
- Fixed syntax errors that hit only when not defining INLINE_EX_CONSTRUCTORS.
authorRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Thu, 1 Jun 2000 22:16:00 +0000 (22:16 +0000)
committerRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Thu, 1 Jun 2000 22:16:00 +0000 (22:16 +0000)
ginac/ex.cpp

index d53cb9585b94b22a3d82257a13fdee58e5d33b41..5c6853a766bb8e9b27bf59b08b3215e0f627b011 100644 (file)
@@ -46,11 +46,11 @@ namespace GiNaC {
 
 #ifndef INLINE_EX_CONSTRUCTORS
 
-ex::ex() : bp(ex0().bp)
+ex::ex() : bp(_ex0().bp)
 {
     debugmsg("ex default constructor",LOGLEVEL_CONSTRUCT);
-    GINAC_ASSERT(ex0().bp!=0);
-    GINAC_ASSERT(ex0().bp->flags & status_flags::dynallocated);
+    GINAC_ASSERT(_ex0().bp!=0);
+    GINAC_ASSERT(_ex0().bp->flags & status_flags::dynallocated);
     GINAC_ASSERT(bp!=0);
     ++bp->refcount;
 }