Changeset 22522
- Timestamp:
- 03/11/18 09:51:25 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Inputs/Inputs.cpp
r22521 r22522 146 146 /*Find input in current dataset*/ 147 147 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)); 149 149 150 150 /*Return output*/ … … 156 156 /*Find input in current dataset*/ 157 157 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)); 159 159 160 160 /*Return output*/ … … 166 166 /*Find input in current dataset*/ 167 167 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)); 169 169 170 170 /*Return output*/ … … 176 176 /*Find input in current dataset*/ 177 177 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)); 179 179 180 180 /*Return output*/
Note:
See TracChangeset
for help on using the changeset viewer.