Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 26, 2007, 3:50:41 PM (16 years ago)
Author:
landauf
Message:

no idea why it compiled and worked without a "return" value…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchie/src/ObjectList.h

    r248 r254  
    5151
    5252            inline static Iterator<T> start()
    53                 { Iterator<T>(pointer_s->first_); }
     53                { return Iterator<T>(pointer_s->first_); }
    5454            inline static Iterator<T> end()
    55                 { Iterator<T>(pointer_s->last_); }
     55                { return Iterator<T>(pointer_s->last_); }
    5656
    5757            ObjectListElement<T>* first_;
Note: See TracChangeset for help on using the changeset viewer.