LWG Issue 2210 (Part #2): list

Howard Hinnant howard.hinnant at gmail.com
Sun Sep 8 11:33:26 PDT 2013


On Sep 8, 2013, at 1:32 PM, Marshall Clow <mclow.lists at gmail.com> wrote:

> Adding allocator-aware sized constructor.
> [ This issue will probably run 9 or 10 patches ]


This line in size_typ.pass.cpp:

+        std::list<int>::const_iterator i = l.begin();

should be:

+        std::list<int, min_allocator<int>>::const_iterator i = l.begin();

Otherwise the test won't compile.

Otherwise, looks good.  Please commit with this change.

Thanks,
Howard




More information about the cfe-commits mailing list