Fix deprecation warning about implicit copy constructor

This commit is contained in:
Michael Jones 2021-08-16 15:01:39 -05:00 committed by Michael Jones
parent bfd1701fcb
commit 6c3ec0d785

View file

@ -155,6 +155,11 @@ namespace detail
, line_( line ) , line_( line )
{} {}
expectation(expectation &&) = default;
expectation(expectation const&) = default;
expectation& operator=(expectation &&) = default;
expectation& operator=(expectation const&) = default;
~expectation() ~expectation()
{ {
for( sequences_cit it = sequences_.begin(); for( sequences_cit it = sequences_.begin();