From 0b829215e5aa05680c99c19468db8f02db969bc5 Mon Sep 17 00:00:00 2001 From: Albert S Date: Sun, 12 Mar 2023 16:47:53 +0100 Subject: [PATCH] shared: LooqsQuery: Remove explicit copy constructor --- shared/looqsquery.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/shared/looqsquery.h b/shared/looqsquery.h index 912ff50..2ae9f14 100644 --- a/shared/looqsquery.h +++ b/shared/looqsquery.h @@ -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