aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/source/buflib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/vasp/source/buflib.cpp')
-rw-r--r--externals/grill/vasp/source/buflib.cpp4
1 files changed, 2 insertions, 2 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;