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:
Vadim Zeitlin
2018-05-20 17:59:20 +02:00
parent 58e6355695
commit d8200f1096

View File

@@ -129,8 +129,6 @@ class wxTarHeaderBlock
public:
wxTarHeaderBlock()
{ memset(data, 0, sizeof(data)); }
wxTarHeaderBlock(const wxTarHeaderBlock& hb)
{ memcpy(data, hb.data, sizeof(data)); }
bool Read(wxInputStream& in);
bool Write(wxOutputStream& out);