Packet destructor should be virtual Fixes warning seen when compiling with -Wall.
1 files changed, 1 insertions(+), 1 deletions(-) M heimdall/source/Packet.h
M heimdall/source/Packet.h => heimdall/source/Packet.h +1 -1
@@ 45,7 45,7 @@ namespace Heimdall memset(data, 0, size); } - ~Packet() + virtual ~Packet() { delete [] data; }