From 2296e921d261857f4cb54efdad779f1f4626270d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 14 Aug 2020 09:04:44 -0400 Subject: core: Resolve several -Wextra-semi warnings We can amend one of the cascade macros to require semicolons in order to compile. In other cases, we can just remove the superfluous semicolons. --- src/core/hle/service/nvdrv/devices/nvdevice.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/core/hle/service/nvdrv/devices/nvdevice.h') diff --git a/src/core/hle/service/nvdrv/devices/nvdevice.h b/src/core/hle/service/nvdrv/devices/nvdevice.h index 1b52511a5..0240d6643 100644 --- a/src/core/hle/service/nvdrv/devices/nvdevice.h +++ b/src/core/hle/service/nvdrv/devices/nvdevice.h @@ -21,8 +21,9 @@ namespace Service::Nvidia::Devices { /// implement the ioctl interface. class nvdevice { public: - explicit nvdevice(Core::System& system) : system{system} {}; + explicit nvdevice(Core::System& system) : system{system} {} virtual ~nvdevice() = default; + union Ioctl { u32_le raw; BitField<0, 8, u32> cmd; -- cgit v1.2.3