Pack boolean members in PropagateUploadFileCommon #5457

This commit is contained in:
Jocelyn Turcotte 2017-01-26 13:41:04 +01:00
parent f1e9be4fa8
commit f6665ccc81

View file

@ -184,8 +184,8 @@ class PropagateUploadFileCommon : public PropagateItemJob {
protected: protected:
QVector<AbstractNetworkJob*> _jobs; /// network jobs that are currently in transit QVector<AbstractNetworkJob*> _jobs; /// network jobs that are currently in transit
bool _finished; /// Tells that all the jobs have been finished bool _finished BITFIELD(1); /// Tells that all the jobs have been finished
bool _deleteExisting; bool _deleteExisting BITFIELD(1);
// measure the performance of checksum calc and upload // measure the performance of checksum calc and upload
#ifdef WITH_TESTING #ifdef WITH_TESTING