fix:clang warning in macos

This commit is contained in:
Xiao YiFang 2022-05-29 16:42:04 +08:00
parent 9c1a22d142
commit 5bb2fce3c4

4
dsl.cc
View file

@ -128,11 +128,7 @@ struct InsidedCard
InsidedCard( uint32_t _offset, uint32_t _size, QVector< wstring > const & words ) :
offset( _offset ), size( _size ), headwords( words )
{}
InsidedCard( InsidedCard const & e ) :
offset( e.offset ), size( e.size ), headwords( e.headwords )
{}
InsidedCard() {}
};
bool indexIsOldOrBad( string const & indexFile, bool hasZipFile )