Changeset 12851
- Timestamp:
- 08/01/12 15:14:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/matrix/Matrix.cpp
r12850 r12851 304 304 void Matrix::Convert(MatrixType type){ 305 305 306 if( type==PetscMatType){306 if((int)type==(int)PetscMatType){ 307 307 #ifdef _HAVE_PETSC_ 308 308 this->pmatrix->Convert(type); … … 311 311 #endif 312 312 } 313 else if( type==SeqMatType){313 else if((int)type==(int)SeqMatType){ 314 314 this->smatrix->Convert(type); 315 315 }
Note:
See TracChangeset
for help on using the changeset viewer.