summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/drcfe.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-04-16 07:47:02 +1000
committer Vas Crabb <vas@vastheman.com>2022-04-16 07:47:51 +1000
commit6985fb1f9003a393d3cead1b55ea4feab488938a (patch)
tree92ceb927a91438d8600899e245079fd73fa49cda /src/devices/cpu/drcfe.h
parent7b8e04e00cf5292af1fc85b561ddf8693e7db3a1 (diff)
Replaced a couple of static_cast downcasts with dynamic_cast for safety, cleaned up some formatting.
Diffstat (limited to 'src/devices/cpu/drcfe.h')
-rw-r--r--src/devices/cpu/drcfe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/drcfe.h b/src/devices/cpu/drcfe.h
index e536ccd2430..8e2455c85d2 100644
--- a/src/devices/cpu/drcfe.h
+++ b/src/devices/cpu/drcfe.h
@@ -134,7 +134,7 @@ public:
// describe a block
opcode_desc const *describe_code(offs_t startpc);
// get last opcode of block
- opcode_desc const* get_last() { return m_desc_live_list.last(); };
+ opcode_desc const *get_last() { return m_desc_live_list.last(); }
protected:
// required overrides