Changeset 26327


Ignore:
Timestamp:
06/15/21 09:28:28 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing compiler warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateElementsVerticesAndMaterials.cpp

    r26277 r26327  
    179179
    180180                        //go through list of materials, and create them:
    181                         for(int i=0;i<nnat;i++){
    182                                 switch(IoCodeToEnumNature(nature[i])){
     181                        for(int nat=0;nat<nnat;nat++){
     182                                switch(IoCodeToEnumNature(nature[nat])){
    183183                                        case MaticeEnum:{ /*{{{*/
    184184                                                        iomodel->FetchDataToInput(inputs,elements,"md.materials.rheology_B",MaterialsRheologyBEnum);
     
    286286                                                break;
    287287                                        default:
    288                                                 _error_("Materials nature type "<<EnumToStringx(IoCodeToEnumNature(nature[i]))<<" not supported");
     288                                                _error_("Materials nature type "<<EnumToStringx(IoCodeToEnumNature(nature[nat]))<<" not supported");
    289289                                                break;
    290290                                }
Note: See TracChangeset for help on using the changeset viewer.