1
0
Fork 0

shared: LooqsQuery: Remove explicit copy constructor

Dieser Commit ist enthalten in:
Albert S. 2023-03-12 16:47:53 +01:00
Ursprung 566c4a8c58
Commit 0b829215e5
1 geänderte Dateien mit 0 neuen und 8 gelöschten Zeilen

Datei anzeigen

@ -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