mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Merge pull request #102 from jonesmz/patch-1
Fix deprecation warning about implicit copy constructor
This commit is contained in:
commit
b86100a667
1 changed files with 5 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue