diff --git a/include/turtle/detail/expectation_template.hpp b/include/turtle/detail/expectation_template.hpp index 20bf6f44..8b4cf400 100644 --- a/include/turtle/detail/expectation_template.hpp +++ b/include/turtle/detail/expectation_template.hpp @@ -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();