Merge pull request #9403 from lioncash/guard

ArmCommon: Add missing header guard
This commit is contained in:
JosJuice 2020-12-31 12:17:28 +01:00 committed by GitHub
commit 7bf590ee5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
// Licensed under GPLv2+ // Licensed under GPLv2+
// Refer to the license.txt file included. // Refer to the license.txt file included.
#pragma once
#include "Common/CommonTypes.h" #include "Common/CommonTypes.h"
enum CCFlags enum CCFlags
@ -24,4 +26,4 @@ enum CCFlags
CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
CC_LO = CC_CC, // Alias of CC_CC Unsigned lower CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
}; };
const u32 NO_COND = 0xE0000000; constexpr u32 NO_COND = 0xE0000000;