[util] Add virtual destructor to NoWrapper

This commit is contained in:
Philip Rebohle 2019-10-25 22:08:00 +02:00
parent 55bae45915
commit 7f66373a69
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,13 @@
namespace dxvk {
template<typename T>
using NoWrapper = T;
class NoWrapper : public T {
public:
virtual ~NoWrapper() { }
};
/**
* \brief Reference-counted COM object