MCPcopy Create free account
hub / github.com/AliveToolkit/alive2 / operator=

Method operator=

smt/expr.cpp:144–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144void expr::operator=(expr &&other) {
145 this->~expr();
146 ptr = 0;
147 swap(ptr, other.ptr);
148}
149
150void expr::operator=(const expr &other) {
151 this->~expr();

Callers

nothing calls this directly

Calls 3

~exprMethod · 0.95
isZ3AstMethod · 0.80
isValidMethod · 0.45

Tested by

no test coverage detected