Changeset 7300 in orxonox.OLD for trunk/src/lib/util/executor/executor.cc
- Timestamp:
- Apr 16, 2006, 7:30:56 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.cc
r7221 r7300 53 53 54 54 this->paramCount = 0; 55 for (unsigned int i = 0; i < FUNCTOR_MAX_ARGUMENTS; i++)55 for (unsigned int i = 0; i <= FUNCTOR_MAX_ARGUMENTS; i++) 56 56 { 57 if (this->defaultValue[i] == MT_NULL )57 if (this->defaultValue[i] == MT_NULL || i == FUNCTOR_MAX_ARGUMENTS) 58 58 { 59 59 this->paramCount = i;
Note: See TracChangeset
for help on using the changeset viewer.