Changeset 20638
- Timestamp:
- 05/23/16 14:56:20 (9 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Params/Parameters.cpp
r20636 r20638 77 77 /*}}}*/ 78 78 Parameters* Parameters::Copy(void){/*{{{*/ 79 _error_("not implemented yet"); 79 80 Parameters* output = new Parameters(); 81 82 for(int i=0;i<NUMPARAMS;i++){ 83 if(this->params[i]){ 84 output->params[i]=this->params[i]->copy(); 85 } 86 } 87 88 return output; 80 89 } 81 90 /*}}}*/ -
issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp
r19701 r20638 55 55 }/*}}}*/ 56 56 const char* ErrorException::what() const throw(){/*{{{*/ 57 this->Report(); 57 58 return what_str; 58 59 }/*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.