From c4def7c814e0b4ebab1140249093e79ad6f29b27 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 17 Jun 2019 18:37:56 -0400 Subject: [PATCH 1/3] Common: Add missing header guards --- Source/Core/Common/GL/GLExtensions/GLExtensions.h | 2 ++ Source/Core/Common/VariantUtil.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Source/Core/Common/GL/GLExtensions/GLExtensions.h b/Source/Core/Common/GL/GLExtensions/GLExtensions.h index f1e258f98e..0c02745190 100644 --- a/Source/Core/Common/GL/GLExtensions/GLExtensions.h +++ b/Source/Core/Common/GL/GLExtensions/GLExtensions.h @@ -2,6 +2,8 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#pragma once + #include #include "Common/CommonTypes.h" diff --git a/Source/Core/Common/VariantUtil.h b/Source/Core/Common/VariantUtil.h index c865ad9681..e9e2987d9c 100644 --- a/Source/Core/Common/VariantUtil.h +++ b/Source/Core/Common/VariantUtil.h @@ -2,6 +2,8 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#pragma once + #include namespace detail From 10f705f6658d13e29836b70376f172edad855abf Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 17 Jun 2019 18:39:03 -0400 Subject: [PATCH 2/3] Core: Add missing header guards --- Source/Core/Core/HW/EXI/BBA-TAP/TAP_Win32.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/HW/EXI/BBA-TAP/TAP_Win32.h b/Source/Core/Core/HW/EXI/BBA-TAP/TAP_Win32.h index b87030f026..dd0eba3235 100644 --- a/Source/Core/Core/HW/EXI/BBA-TAP/TAP_Win32.h +++ b/Source/Core/Core/HW/EXI/BBA-TAP/TAP_Win32.h @@ -31,6 +31,8 @@ // the TAP-Win32 driver and contains definitions // common to both. //=============================================== +#pragma once + #include #include #include From 2714ba2b3d60c83612efc2a2f5a1e04c77f47822 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 17 Jun 2019 18:39:44 -0400 Subject: [PATCH 3/3] UICommon: Add missing header guards --- Source/Core/UICommon/CommandLineParse.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/UICommon/CommandLineParse.h b/Source/Core/UICommon/CommandLineParse.h index d1d52c19b0..86bc6c99b2 100644 --- a/Source/Core/UICommon/CommandLineParse.h +++ b/Source/Core/UICommon/CommandLineParse.h @@ -2,6 +2,8 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#pragma once + #include #include #include