Make BaseActivation class move-constructible/assignable by tyxia · Pull Request #164 · google/cel-cpp

The copy constructor/assignment are explicitly deleted. These user-defined function will also delete implicitly-declared move constructor/assignment, which make this class not move-constructible/assignable.

Bring them back by adding =default move constructor/assignment.

Also, change default destructor to use =default which is suggested by style guide.