From f627d3fed905ef8288c3b6bbc18e195495fea96b Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 23 Feb 2003 04:39:30 +0000 Subject: "" svn path=/trunk/; revision=424 --- externals/grill/vasp/source/buflib.cpp | 4 ++-- externals/grill/vasp/source/env.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'externals/grill/vasp/source') diff --git a/externals/grill/vasp/source/buflib.cpp b/externals/grill/vasp/source/buflib.cpp index b1a9054e..3b92d1e9 100644 --- a/externals/grill/vasp/source/buflib.cpp +++ b/externals/grill/vasp/source/buflib.cpp @@ -68,7 +68,7 @@ BufEntry::BufEntry(const t_symbol *s,I fr,BL zero): refcnt(0),nxt(NULL) { if(zero) flext::ZeroMem(data,len*sizeof(*data)); -// ASSERT(!flext_base::GetThing(sym)); +// FLEXT_ASSERT(!flext_base::GetThing(sym)); // flext_base::SetThing(sym,this); } @@ -123,7 +123,7 @@ static V Collect() BufEntry *e,*p; for(p = NULL,e = libhead; e; ) { if(e->refcnt <= 0 && e->tick+LIBTOL < libtick) { - ASSERT(e->refcnt == 0); + FLEXT_ASSERT(e->refcnt == 0); BufEntry *n = e->nxt; diff --git a/externals/grill/vasp/source/env.cpp b/externals/grill/vasp/source/env.cpp index 010f888e..2f0fb58b 100644 --- a/externals/grill/vasp/source/env.cpp +++ b/externals/grill/vasp/source/env.cpp @@ -97,7 +97,7 @@ Env::Iter::Iter(const Env &bpl): bp(bpl),ppt(-BIG),npt(BIG),pvl(0),k(0) {} V Env::Iter::Init(R p) { I cnt = bp.Count(); - ASSERT(cnt > 0); + FLEXT_ASSERT(cnt > 0); if(p < bp.Pos(0)) { // position is before the head @@ -115,7 +115,7 @@ V Env::Iter::Init(R p) if(p >= bp.Pos(ix)) break; ppt = bp.Pos(ix); pvl = bp.Val(ix); - ASSERT(ix < cnt); + FLEXT_ASSERT(ix < cnt); } if(ix >= cnt) { -- cgit v1.2.1