Changeset 24492
- Timestamp:
- 12/20/19 16:27:18 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/AdaptiveMeshRefinement.cpp
r24491 r24492 732 732 /*Basic verification*/ 733 733 if(!pdata) _error_("Impossible to continue: pdata is NULL!\n"); 734 if(* pdata[0]<=0) _error_("Impossible to continue: nvertices <=0!\n");735 if(* pdata[1]<=0) _error_("Impossible to continue: nelements <=0!\n");734 if(**pdata<=0) _error_("Impossible to continue: nvertices <=0!\n"); 735 if(*(*pdata+1)<=0) _error_("Impossible to continue: nelements <=0!\n"); 736 736 if(!pxy) _error_("Impossible to continue: pxy is NULL!\n"); 737 737 if(!pelements) _error_("Impossible to continue: pelements is NULL!\n");
Note:
See TracChangeset
for help on using the changeset viewer.