Open mrkraimer opened 4 years ago
Currently code often has to implement an empty destroy method. I think that if
virtual void destroy() = 0;
is replaced with
virtual void destroy() {}
then other code does not have to implement an empty destroy method
Now that a new release of EPICS7 is available, can Michael now make this change?
Done. 598fa1e596450dc4e79dc85187809794659b62f6
Currently code often has to implement an empty destroy method. I think that if
is replaced with
then other code does not have to implement an empty destroy method