Remove unused wxTarHeaderBlock copy ctor
These objects are never copied, and if they were, the default (compiler-generated) copy ctor would do the same thing this explicitly defined copy ctor did, so just remove it.
This commit is contained in:
@@ -129,8 +129,6 @@ class wxTarHeaderBlock
|
|||||||
public:
|
public:
|
||||||
wxTarHeaderBlock()
|
wxTarHeaderBlock()
|
||||||
{ memset(data, 0, sizeof(data)); }
|
{ memset(data, 0, sizeof(data)); }
|
||||||
wxTarHeaderBlock(const wxTarHeaderBlock& hb)
|
|
||||||
{ memcpy(data, hb.data, sizeof(data)); }
|
|
||||||
|
|
||||||
bool Read(wxInputStream& in);
|
bool Read(wxInputStream& in);
|
||||||
bool Write(wxOutputStream& out);
|
bool Write(wxOutputStream& out);
|
||||||
|
Reference in New Issue
Block a user