Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 15, 2008, 11:11:16 AM (16 years ago)
Author:
rgrieder
Message:

Corrected types when using 'const Type' constants

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/Executor.cc

    r1747 r1786  
    130130    }
    131131
    132     Executor& Executor::setDescriptionParam(int param, const std::string& description)
     132    Executor& Executor::setDescriptionParam(unsigned int param, const std::string& description)
    133133    {
    134134        if (param >= 0 && param < MAX_FUNCTOR_ARGUMENTS)
     
    148148    }
    149149
    150     const std::string& Executor::getDescriptionParam(int param) const
     150    const std::string& Executor::getDescriptionParam(unsigned int param) const
    151151    {
    152152        if (param >= 0 && param < MAX_FUNCTOR_ARGUMENTS)
Note: See TracChangeset for help on using the changeset viewer.