> +C++11: unique_ptr and shared_ptr allow > +to specify a custom deleter to handle the new[]/delete[] case correctly > </td><td><pre> Not sure if I'm misunderstanding something, but unique_ptr has a partial specialization for T[], so no explicit custom deleter is needed. See ยง20.7.3.1. Jonathan