From f52f47fe22493c8282bc84c7f3a1e0808ec36e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Corr=C3=AAa=20da=20Silva=20Sanches?= Date: Tue, 26 Dec 2023 02:44:52 +0000 Subject: [PATCH] add #pragma once, fix #include guard to match the path and comment #endif --- src/devices/bus/technics/kn5000_extension.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/devices/bus/technics/kn5000_extension.h b/src/devices/bus/technics/kn5000_extension.h index 29bdb7b148140..9a6b875d576aa 100644 --- a/src/devices/bus/technics/kn5000_extension.h +++ b/src/devices/bus/technics/kn5000_extension.h @@ -3,8 +3,10 @@ // Generic Technics KN5000 extension slot -#ifndef MAME_BUS_KN5000_EXTENSION_H -#define MAME_BUS_KN5000_EXTENSION_H +#ifndef MAME_BUS_TECHNICS_KN5000_EXTENSION_H +#define MAME_BUS_TECHNICS_KN5000_EXTENSION_H + +#pragma once class kn5000_extension_device; @@ -45,4 +47,4 @@ class kn5000_extension_device : public device_t, public device_single_card_slot_ DECLARE_DEVICE_TYPE(KN5000_EXTENSION, kn5000_extension_device) -#endif +#endif // MAME_BUS_TECHNICS_KN5000_EXTENSION_H