From 92aca7daadb2c355a2c8f3bead034019242d7c40 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 17 Jan 2018 11:37:26 -0500 Subject: [PATCH] Warning: implicit private inheritance may be hazardous to your build (nw) --- src/emu/devdelegate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/devdelegate.h b/src/emu/devdelegate.h index a9b2f5aca95..2c7ba3a5562 100644 --- a/src/emu/devdelegate.h +++ b/src/emu/devdelegate.h @@ -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 -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;