Make MatcherGenericBase copy constructor take const parameter.

This commit is contained in:
Emery Goss (AIVAS-v2:Ubuntu-20.04) 2022-11-11 22:50:44 -06:00 committed by Martin Hořeňovský
parent 41990e0fe6
commit b980d408b1
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ namespace Matchers {
MatcherGenericBase() = default;
~MatcherGenericBase() override; // = default;
MatcherGenericBase(MatcherGenericBase&) = default;
MatcherGenericBase(MatcherGenericBase const&) = default;
MatcherGenericBase(MatcherGenericBase&&) = default;
MatcherGenericBase& operator=(MatcherGenericBase const&) = delete;