aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/source
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-02-23 04:39:30 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-02-23 04:39:30 +0000
commitf627d3fed905ef8288c3b6bbc18e195495fea96b (patch)
treef825c7cd95765cb7b66f1aadd176788832094b1a /externals/grill/vasp/source
parentabcb79a75c9d5784f41260d25fdd0029641cb968 (diff)
""
svn path=/trunk/; revision=424
Diffstat (limited to 'externals/grill/vasp/source')
-rw-r--r--externals/grill/vasp/source/buflib.cpp4
-rw-r--r--externals/grill/vasp/source/env.cpp4
2 files changed, 4 insertions, 4 deletions
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) {