Changeset 1879 for code/trunk/src/core/Functor.h
- Timestamp:
- Oct 3, 2008, 2:44:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Functor.h
r1786 r1879 105 105 inline MultiType getReturnvalue() const { return this->returnedValue_; } 106 106 107 std::string getTypenameParam(unsigned int param) const { return (param >= 0 && param< 5) ? this->typeParam_[param] : ""; }107 std::string getTypenameParam(unsigned int param) const { return (param < 5) ? this->typeParam_[param] : ""; } 108 108 std::string getTypenameReturnvalue() const { return this->typeReturnvalue_; } 109 109
Note: See TracChangeset
for help on using the changeset viewer.