Changeset 1879 for code/trunk/src/core/CommandEvaluation.cc
- Timestamp:
- Oct 3, 2008, 2:44:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandEvaluation.cc
r1747 r1879 220 220 void CommandEvaluation::setEvaluatedParameter(unsigned int index, MultiType param) 221 221 { 222 if (index >= 0 && index< MAX_FUNCTOR_ARGUMENTS)222 if (index < MAX_FUNCTOR_ARGUMENTS) 223 223 this->param_[index] = param; 224 224 } … … 226 226 MultiType CommandEvaluation::getEvaluatedParameter(unsigned int index) const 227 227 { 228 if (index >= 0 && index< MAX_FUNCTOR_ARGUMENTS)228 if (index < MAX_FUNCTOR_ARGUMENTS) 229 229 return this->param_[index]; 230 230
Note: See TracChangeset
for help on using the changeset viewer.