created BEAR_CASSERT and renamed dassert to BEAR_DASSERT
[libbear.git] / physics / src / entityManager.cpp
index 68c4508..4bb5fee 100644 (file)
@@ -75,7 +75,7 @@ void manager::clean()
 
 void manager::add(Entity* pe)
 {
-    DASSERT(pe != NULL);
+    BEAR_DASSERT(pe != NULL);
 
     {
         Particle* pp = dynamic_cast<Particle*>(pe);
@@ -99,7 +99,7 @@ void manager::add(Entity* pe)
 }
 void manager::remove(Entity* pe)
 {
-    DASSERT(pe != NULL);
+    BEAR_DASSERT(pe != NULL);
 
     {
         Autolock lock( &muSetPart );