Changeset 25529


Ignore:
Timestamp:
09/03/20 15:12:22 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: better marshall

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  
    8484        int index;
    8585
    86         int object_enum = ArrayInputEnum;
     86        int object_enum = InputsEnum;
    8787   marshallhandle->call(object_enum);
     88        marshallhandle->call(this->numberofelements_local);
     89        marshallhandle->call(this->numberofvertices_local);
    8890
    8991        if(marshallhandle->OperationNumber()!=MARSHALLING_LOAD){
  • issm/trunk-jpl/src/c/classes/Params/DoubleVecParam.cpp

    r25508 r25529  
    4848        _printf_(setw(22)<<"   DoubleVecParam "<<setw(35)<<left<<EnumToStringx(this->enum_type)<<" "<<"[");
    4949        for(int i=0;i<this->M;i++) _printf_(" "<< this->values[i]);
    50         _printf_("\n");
     50        _printf_("]\n");
    5151}
    5252/*}}}*/
     
    6363        int object_enum = DoubleVecParamEnum;
    6464   marshallhandle->call(object_enum);
    65 
    6665        marshallhandle->call(this->enum_type);
    6766        marshallhandle->call(this->M);
    6867        marshallhandle->call(this->values,this->M);
    69 
    7068}
    7169/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.