|
From: <den...@us...> - 2009-11-12 18:12:03
|
Revision: 63
http://stdair.svn.sourceforge.net/stdair/?rev=63&view=rev
Author: denis_arnaud
Date: 2009-11-12 18:11:55 +0000 (Thu, 12 Nov 2009)
Log Message:
-----------
[Dev] Fixed a small bug in the getContentChild() method.
Modified Paths:
--------------
trunk/stdair/stdair/bom/AirlineFeatureSetStructure.hpp
Modified: trunk/stdair/stdair/bom/AirlineFeatureSetStructure.hpp
===================================================================
--- trunk/stdair/stdair/bom/AirlineFeatureSetStructure.hpp 2009-11-12 16:44:45 UTC (rev 62)
+++ trunk/stdair/stdair/bom/AirlineFeatureSetStructure.hpp 2009-11-12 18:11:55 UTC (rev 63)
@@ -89,10 +89,10 @@
if (itContentChild != lChildrenMap.end()) {
oContentChild_ptr = itContentChild->second;
- return oContentChild_ptr;
+ assert (oContentChild_ptr != NULL);
}
- assert (oContentChild_ptr != NULL);
+ return oContentChild_ptr;
}
private:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|