Skip to content

Commit 3d60038

Browse files
authored
[posix] make base class destructor virtual (openthread#7220)
1 parent d9fd256 commit 3d60038

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/posix/platform/mainloop.hpp

+6
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ class Source
6565
*/
6666
virtual void Process(const otSysMainloopContext &aContext) = 0;
6767

68+
/**
69+
* This method marks desturctor virtual method.
70+
*
71+
*/
72+
virtual ~Source() = default;
73+
6874
private:
6975
Source *mNext = nullptr;
7076
};

0 commit comments

Comments
 (0)