Merge pull request #102 from jonesmz/patch-1

Fix deprecation warning about implicit copy constructor
This commit is contained in:
Mathieu Champlon 2021-08-17 06:15:34 +02:00 committed by GitHub
commit b86100a667
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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