Merge pull request #210 from theirix/fix_vdtor
Added virtual dtor to OutBuffer
This commit is contained in:
commit
ce5ba55b01
|
|
@ -38,6 +38,13 @@ protected:
|
||||||
virtual void append(const void *data, size_t size) = 0;
|
virtual void append(const void *data, size_t size) = 0;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* Destructor
|
||||||
|
*/
|
||||||
|
virtual ~OutBuffer()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a binary buffer to the buffer
|
* Add a binary buffer to the buffer
|
||||||
* @param string char* to the string
|
* @param string char* to the string
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue