From: <qua...@us...> - 2009-10-02 13:20:03
|
Revision: 15 http://stdair.svn.sourceforge.net/stdair/?rev=15&view=rev Author: quannaus Date: 2009-10-02 13:19:55 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Small change in some functions. Modified Paths: -------------- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp Modified: trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp =================================================================== --- trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:13:59 UTC (rev 14) +++ trunk/stdair/stdair/bom/BomChildrenHolderImp.hpp 2009-10-02 13:19:55 UTC (rev 15) @@ -112,7 +112,9 @@ /** Initialise the internal iterators on bom objects: return the iterator at the begining of the list. */ ListIterator_T listIteratorBegin () const { - return _bomChildrenOrderedList.begin(); + typename BomChildrenOrderedList_T::iterator it = + _bomChildrenOrderedList.begin(); + return it; } /** Initialise the internal iterators on bom objects: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |