From e7b32f3a40e7309505eaf9bf3f975169d643518a Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Thu, 11 Aug 2016 11:37:39 +1000 Subject: [PATCH] add override qualifier --- src/devices/machine/hdc92x4.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/machine/hdc92x4.h b/src/devices/machine/hdc92x4.h index 899c3b955a0..fc862101919 100644 --- a/src/devices/machine/hdc92x4.h +++ b/src/devices/machine/hdc92x4.h @@ -487,7 +487,7 @@ public: hdc9224_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); protected: - int step_time(); + int step_time() override; }; class hdc9234_device : public hdc92x4_device @@ -496,7 +496,7 @@ public: hdc9234_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); protected: - int step_time(); + int step_time() override; }; #endif