Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2006, 4:20:36 PM (19 years ago)
Author:
bensch
Message:

script_engine: fixed the LoadParam-Bug that prevented loading of two Parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/script_engine/src/lib/util/substring.h

    r7477 r8300  
    7070  inline unsigned int size() const { return this->strings.size(); };
    7171  /** @param i the i'th String @returns the i'th string from the subset of Strings */
    72 const std::string& operator[](unsigned int i) const { return (i < this->strings.size()) ? this->strings[i] : emptyString;return this->getString(i); };
     72  inline const std::string& operator[](unsigned int i) const { return (i < this->strings.size()) ? this->strings[i] : emptyString; };
    7373  /** @param i the i'th String @returns the i'th string from the subset of Strings */
    74   const std::string& getString(unsigned int i) const { return (*this)[i]; };
     74  inline const std::string& getString(unsigned int i) const { return (*this)[i]; };
    7575
    7676  // the almighty algorithm.
Note: See TracChangeset for help on using the changeset viewer.