Remove redundant initialization of SyncFileStatus::_shared attribute

The value gets already initialized by default member initialization,
so there is no need to set it again in the copy constructor.

Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
This commit is contained in:
Stephan Beyer 2020-07-07 09:20:12 +02:00 committed by Kevin Ottens
parent ed570d6274
commit a9de465927

View file

@ -21,7 +21,6 @@ SyncFileStatus::SyncFileStatus()
SyncFileStatus::SyncFileStatus(SyncFileStatusTag tag)
: _tag(tag)
, _shared(false)
{
}