On Sep 8, 2013, at 1:32 PM, Marshall Clow <[email protected]> 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

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to