prc: give StreamWrapperBase virtual destructor (fixes compile error)

The compile error was observed with VS 2019 + clang-cl + Ninja + CMake in a Standard build on Windows 10.
This commit is contained in:
rdb 2020-04-13 13:15:58 +02:00
parent d403b16249
commit 00b81f381a

View File

@ -26,6 +26,7 @@ class EXPCL_DTOOL_PRC StreamWrapperBase {
protected:
INLINE StreamWrapperBase();
INLINE StreamWrapperBase(const StreamWrapperBase &copy) = delete;
virtual ~StreamWrapperBase() {}
PUBLISHED:
INLINE void acquire();