1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-29 19:24:10 +01:00

[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

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