nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/zug/sequence.hpp b/zug/sequence.hpp
2index d7ac093..bffb771 100644
3--- a/zug/sequence.hpp
4+++ b/zug/sequence.hpp
5@@ -76,8 +76,9 @@ struct sequence_data
6
7 sequence_data& operator=(sequence_data&& other)
8 {
9- impl_ = std::move(other.impl);
10+ impl_ = std::move(other.impl_);
11 impl_.reductor.current(this);
12+ return *this;
13 }
14
15 sequence_data& operator=(const sequence_data& other)