Changeset 25529
- Timestamp:
- 09/03/20 15:12:22 (5 years ago)
- Location:
- issm/trunk-jpl/src/c/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs/Inputs.cpp
r25523 r25529 84 84 int index; 85 85 86 int object_enum = ArrayInputEnum;86 int object_enum = InputsEnum; 87 87 marshallhandle->call(object_enum); 88 marshallhandle->call(this->numberofelements_local); 89 marshallhandle->call(this->numberofvertices_local); 88 90 89 91 if(marshallhandle->OperationNumber()!=MARSHALLING_LOAD){ -
issm/trunk-jpl/src/c/classes/Params/DoubleVecParam.cpp
r25508 r25529 48 48 _printf_(setw(22)<<" DoubleVecParam "<<setw(35)<<left<<EnumToStringx(this->enum_type)<<" "<<"["); 49 49 for(int i=0;i<this->M;i++) _printf_(" "<< this->values[i]); 50 _printf_(" \n");50 _printf_("]\n"); 51 51 } 52 52 /*}}}*/ … … 63 63 int object_enum = DoubleVecParamEnum; 64 64 marshallhandle->call(object_enum); 65 66 65 marshallhandle->call(this->enum_type); 67 66 marshallhandle->call(this->M); 68 67 marshallhandle->call(this->values,this->M); 69 70 68 } 71 69 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.