From 5bb2fce3c4f1088c1a2765e1df93aeb05bca193a Mon Sep 17 00:00:00 2001 From: Xiao YiFang Date: Sun, 29 May 2022 16:42:04 +0800 Subject: [PATCH] fix:clang warning in macos --- dsl.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dsl.cc b/dsl.cc index 6125342e..ae1e6b42 100644 --- a/dsl.cc +++ b/dsl.cc @@ -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 )