shared: LooqsQuery: Remove explicit copy constructor

This commit is contained in:
Albert S. 2023-03-12 16:47:53 +01:00
부모 566c4a8c58
커밋 0b829215e5
1개의 변경된 파일0개의 추가작업 그리고 8개의 파일을 삭제

파일 보기

@ -91,14 +91,6 @@ class LooqsQuery
this->sortConditions = sortConditions;
updateTokensMask();
}
LooqsQuery(const LooqsQuery &o)
{
this->tokens = o.tokens;
this->sortConditions = o.sortConditions;
this->tokensMask = o.tokensMask;
this->limit = o.limit;
}
};
#endif // LOOQSQUERY_H