Changeset 22522


Ignore:
Timestamp:
03/11/18 09:51:25 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Inputs/Inputs.cpp

    r22521 r22522  
    146146        /*Find input in current dataset*/
    147147        Input* input=this->GetInput(enumtype);
    148         if (!input) _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");
     148        if (!input) _error_("could not find input with enum " << EnumToStringx(enumtype));
    149149
    150150        /*Return output*/
     
    156156        /*Find input in current dataset*/
    157157        Input* input=this->GetInput(enumtype);
    158         if (!input) _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");
     158        if (!input) _error_("could not find input with enum " << EnumToStringx(enumtype));
    159159
    160160        /*Return output*/
     
    166166        /*Find input in current dataset*/
    167167        Input* input=this->GetInput(enumtype);
    168         if (!input) _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");
     168        if (!input) _error_("could not find input with enum " << EnumToStringx(enumtype));
    169169
    170170        /*Return output*/
     
    176176        /*Find input in current dataset*/
    177177        Input* input=this->GetInput(enumtype);
    178         if (!input) _error_("could not find input with enum type " << enum_type << " (" << EnumToStringx(enum_type) << ")");
     178        if (!input) _error_("could not find input with enum " << EnumToStringx(enumtype));
    179179
    180180        /*Return output*/
Note: See TracChangeset for help on using the changeset viewer.