summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devdelegate.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-01-17 11:37:26 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-01-17 11:37:58 -0500
commit92aca7daadb2c355a2c8f3bead034019242d7c40 (patch)
tree8360e02f15b7197938e09700bead7db2963e653f /src/emu/devdelegate.h
parentd1b698af363fed1eb62846179e536c230502befa (diff)
Warning: implicit private inheritance may be hazardous to your build (nw)
Diffstat (limited to 'src/emu/devdelegate.h')
-rw-r--r--src/emu/devdelegate.h2
1 files changed, 1 insertions, 1 deletions
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<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;