archive/bzip2: reorder fields to improve packing

This commit is contained in:
Max Kellermann 2020-09-04 17:50:49 +02:00
parent 1a516e7744
commit f63c343f68

View File

@ -58,10 +58,10 @@ public:
class Bzip2InputStream final : public InputStream { class Bzip2InputStream final : public InputStream {
std::shared_ptr<InputStream> input; std::shared_ptr<InputStream> input;
bool eof = false;
bz_stream bzstream; bz_stream bzstream;
bool eof = false;
char buffer[5000]; char buffer[5000];
public: public: