Don't call the destructor on the base class.
Not only is this unnecessary (since the base-class destructor is
called automatically), but it is probably undefined behaviour, as
it leads to the base-class destructor being called twice.
Although clang doesn't complain about this, gcc gives a compilation
error (albeit with a highly confusing message).
Test: No compilation error from gcc.
Change-Id: I5043630335d0b09b08d4272794f292ed98541b87
Signed-off-by: Alec Edgington <alec.m.edgington@gmail.com>
1 file changed