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:
parent
55bae45915
commit
7f66373a69
@ -9,7 +9,13 @@
|
||||
namespace dxvk {
|
||||
|
||||
template<typename T>
|
||||
using NoWrapper = T;
|
||||
class NoWrapper : public T {
|
||||
|
||||
public:
|
||||
|
||||
virtual ~NoWrapper() { }
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* \brief Reference-counted COM object
|
||||
|
Loading…
Reference in New Issue
Block a user