Skip to content

Commit

Permalink
Merge pull request #102 from jonesmz/patch-1
Browse files Browse the repository at this point in the history
Fix deprecation warning about implicit copy constructor
  • Loading branch information
mat007 authored Aug 17, 2021
2 parents bfd1701 + 6c3ec0d commit b86100a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/turtle/detail/expectation_template.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit b86100a

Please sign in to comment.