Changeset 1879 for code/trunk/src/core/Executor.h
- Timestamp:
- Oct 3, 2008, 2:44:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Executor.h
r1786 r1879 198 198 inline MultiType getDefaultValue(unsigned int index) const 199 199 { 200 if (index >= 0 && index< MAX_FUNCTOR_ARGUMENTS)200 if (index < MAX_FUNCTOR_ARGUMENTS) 201 201 return this->defaultValue_[index]; 202 202 … … 207 207 inline bool defaultValueSet(unsigned int index) const 208 208 { 209 if (index >= 0 && index< MAX_FUNCTOR_ARGUMENTS)209 if (index < MAX_FUNCTOR_ARGUMENTS) 210 210 return this->bAddedDefaultValue_[index]; 211 211
Note: See TracChangeset
for help on using the changeset viewer.