Ticket #4003: inadequate_patch.patch

File inadequate_patch.patch, 405 bytes (added by Christopher Bruns <cmbruns@…>, 13 years ago)

(imperfect) patch for destroy.hpp

  • destroy.hpp

     
    2727# endif
    2828    >
    2929{
    30     template <class T>
    31     static void execute(T const volatile* p)
     30    template <class Type>
     31    static void execute(Type const volatile* p)
    3232    {
    33         p->T::~T();
     33        p->Type::~Type();
    3434    }
    3535};
    3636