From 0a4dbbadc742bec8a2f610bd6d012e6c165cd719 Mon Sep 17 00:00:00 2001 From: Michael Uleysky Date: Thu, 1 Oct 2015 22:43:53 +1000 Subject: [PATCH] Change type of pointer argument of the function DeallocateBlob() from void* to int8_t*, as Blob() return value. --- include/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common.h b/include/common.h index 77b74f9..45a2c7c 100644 --- a/include/common.h +++ b/include/common.h @@ -22,7 +22,7 @@ class EXPORT ObjectBase protected: // No save by default virtual const int8_t* Blob(size_t* size) const { *size=0; return 0; } -virtual void DeallocBlob(const void* ptr) const {}; +virtual void DeallocBlob(const int8_t* ptr) const {}; public: ObjectBase() = default;