Warning: implicit private inheritance may be hazardous to your build (nw)

This commit is contained in:
AJR 2018-01-17 11:37:26 -05:00
parent d1b698af36
commit 92aca7daad

View File

@ -70,7 +70,7 @@ private:
// device_delegate is a delegate that wraps with a device tag and can be easily
// late bound without replicating logic everywhere
template<typename _Signature>
class device_delegate : public named_delegate<_Signature>, device_delegate_helper
class device_delegate : public named_delegate<_Signature>, public device_delegate_helper
{
typedef device_delegate<_Signature> thistype;
typedef named_delegate<_Signature> basetype;