~grimler/Heimdall

1385b183d2d132a239f341d4569f39db88604275 — Antony Cherepanov 8 years ago 95e5c1c
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;
			}