From 16bf7c6f263461da92a40fa058215d79ef36f515 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 7 Oct 2023 13:31:35 -0400 Subject: [PATCH] Fix include guard. --- InstructionSets/x86/Interrupts.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InstructionSets/x86/Interrupts.hpp b/InstructionSets/x86/Interrupts.hpp index 0fb424999..c8d1dcb68 100644 --- a/InstructionSets/x86/Interrupts.hpp +++ b/InstructionSets/x86/Interrupts.hpp @@ -6,8 +6,8 @@ // Copyright © 2023 Thomas Harte. All rights reserved. // -#ifndef InstructionSets_M68k_Interrupts_h -#define InstructionSets_M68k_Interrupts_h +#ifndef InstructionSets_x86_Interrupts_h +#define InstructionSets_x86_Interrupts_h namespace InstructionSet::x86 { @@ -21,4 +21,4 @@ enum Interrupt { } -#endif /* InstructionSets_M68k_Interrupts_h */ +#endif /* InstructionSets_x86_Interrupts_h */