From: Allen B. <al...@us...> - 2003-01-11 17:49:52
|
allenb 2003/01/11 09:49:51 PST Modified files: . ChangeLog Log: Changed NodeList type from std::list to std::vector. For the majority of usages, I can think of no advantages to using std::list as the list type for NodeList. There are several performance and storage advantages for using std::vector though. The only time I can see std::list being helpful is if we reordered or inserted and new node in the middle of the list. Since these operations are not performed routinely (and currently aren't even implemented) it doesn't make sense to keep using std::list. Revision Changes Path 1.16 +1 -0 cppdom/ChangeLog http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/xml-cppdom/cppdom/ChangeLog.diff?r1=1.15&r2=1.16&diff_format=h |