From 09ab2226587fd622a5b73be21b88e4cad69adbd7 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 20 May 2018 15:19:13 -0400 Subject: [PATCH] Try to fix the build once again (nw) --- src/emu/machine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/machine.h b/src/emu/machine.h index 0004b01e4ac..88132ef8f2d 100644 --- a/src/emu/machine.h +++ b/src/emu/machine.h @@ -211,7 +211,7 @@ public: // fetch items by name [[deprecated("absolute tag lookup; use subdevice or finder instead")]] inline device_t *device(const char *tag) const { return root_device().subdevice(tag); } - [[deprecated("absolute tag lookup; use subdevice or finder instead")]] template inline DeviceClass *device(const char *tag) { return downcast(device(tag)); } + template [[deprecated("absolute tag lookup; use subdevice or finder instead")]] inline DeviceClass *device(const char *tag) { return downcast(device(tag)); } // immediate operations int run(bool quiet);