diff --git a/src/utils/pv/destroyable.h b/src/utils/pv/destroyable.h index f9afc47..07dfed6 100644 --- a/src/utils/pv/destroyable.h +++ b/src/utils/pv/destroyable.h @@ -21,13 +21,13 @@ namespace epics { namespace pvAccess { /** * @brief Instance declaring destroy method. */ - class epicsShareClass Destroyable { + class Destroyable { public: POINTER_DEFINITIONS(Destroyable); /** * Destroy this instance. */ - virtual void destroy() = 0; + virtual void destroy() {}; protected: virtual ~Destroyable() {}